body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: Arial;
    background-color: #242424;
    color: #fff;
}

#heading {
    font-size: 3.5em;
}

.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}


.projects a:link, .projects a:visited, .projects a:active {
    text-decoration: none;
    color: inherit;
    display: block;
}

a:hover {
    color: #b8c0d4;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    height: 100%;
    padding: 0.5em;
    background-color: #95b6c9;
    border-radius: 10px;
    color: #000;
    overflow: hidden;
    transition: transform 250ms;
}

.project:hover {
    transform: translateY(-10px);
}

.about {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
