.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--space-4);
    padding: 0;
    font-size: 1.6rem;
    list-style: none;
}

.social-links a {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-circle);
    transition: background-color 100ms cubic-bezier(0,0,0.3,1);
}

.social-links a:hover {
    text-decoration: none;
    color: #fff;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.social-links .social-network {
    padding: 0 0.5rem;
}

@media (min-width: 40em) {
    .social-links {
        flex-direction: row;
        margin: 0 0 var(--space-10);
    }   
}
