@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');

#our-team {
    display: flex;
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    background-image: url("assets/2botellas_2-dark.webp");
    width: 100%;
    height: fit-content;
    background-size: cover;
    background-position: center;
    justify-content: center;
    color: white;
    z-index: -10;
    text-align: center;
    padding-block: 3rem;
}

#presentation {
    margin-inline: 2rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: justify;
}

.team-row {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.team-member > img {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
    border-radius: 50%;
}

.team-member-socials {
    display: flex;
    gap: 0.5rem;
}

@media screen and (max-width: 600px) {
    .team-row {
        flex-direction: column;
        gap: 2rem;
    }
}