.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin: 5rem 0 0 0;
    width: 100%;
}

h2 {
    font-size: 30px;
    margin: 2rem 0 4rem 0;
    font-family: var(--third-font);
}


/* SOCIAL */

.social {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.social a {
    text-decoration: none;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: border 2s linear infinite alternate, box-shadow 2s linear infinite alternate;
    border: 1px solid transparent;
    border-radius: var(--rounded-md);
    padding: 2rem;
    width: 3rem;
    height: 3rem;
    transition: all 0.3s ease;
}

.social a img {
    width: 100%;
}

.social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(1rem);
}


/* MEDIA QUERY */
@media screen and (max-width:1000px) {
    .social {
        gap: 1rem;
    }
}