.team{
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 100%;
    height: auto;
    min-height: calc(100vh - 80px);
}

.members{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;

    max-width: 1200px;
    width: 100%;
    height: auto;
}

.member{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 15px 75px;

    width: 250px;
    height: auto;
}

.member .member-pic{
    width: 80%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.member .member-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}