body {
    background: #fafafa;
}

.project-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2.4rem;
}

.socials {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 10px;
}

.socials img {
    opacity: .8;
    transition: opacity .2s ease;
}

.socials img:hover {
    opacity: 1;
}

.project-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.project-card {
    transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.project-link:hover .project-card {
    transform: translateY(-4px);
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .12);
}