
.content-container{
    margin: 6vh 0 10vh 0;
}

.member-container{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 15% 15% 15% 15%;
    justify-content: space-evenly;
    row-gap: 5vh;
    margin-top: 5vh;
}

.person-container{
    width: 100%;
}

.thumbnail{
    width: 100%;
}

.person-container img{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 100%;
}

.desc{
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vh;
}

.desc h3{
    font-size: 1.3vw;
}

.desc p{
    margin-top: 1vh;
    font-size: 1.2vw;
}

p.person-title{
    font-family: manrope_xbold;
}

.member-flex{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.member-flex .person-container{
    width: 20%;
}

@media screen and (max-width: 1000px){
    .member-container{
        width: 90%;
    }
}

@media screen and (max-width: 601px){
    
    .member-flex{
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .member-flex .person-container, .member-container .person-container{
        width: 50%;
        margin-bottom: 5vh;
    }

    .member-container{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .desc h3{
        font-size: 3.2vw;
}

    .desc p{
        font-size: 3vw;
}
}
@media screen and (max-width: 901px){
    .member-container{
        grid-template-columns: 20% 20% 20%;
    }
}