.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 19px;
    margin: 0 0 var(--space-4);
    padding: 0;
    list-style: none;
    color: var(--blue);
}

.social-links .social-network {
    background-color: var(--yellow);
    width: 30px;
    height: 30px;
    border-radius: var(--rounded-circle);
}

.social-links a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.social-links a:hover {
    color: inherit;
}

@media (min-width: 64em) {
    .social-links {
        margin-bottom: var(--space-8);
    }
}