
#team {
    min-height: 30vh;
    display: flex;
    align-items: stretch; 
    flex-direction: column;
    background-color: var(--bg-color-presentation);
    text-align: center;
}

#team h2 {
    margin-top: 5vh;
    
}

#team ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin-bottom: 40px;
}
#team li {
    width: 200px;
    padding: 20px;
}
#team img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 50%;
    object-fit: cover;
}

@media screen and (max-width: 650px) {
    #team ul {
    align-items: center;
    flex-direction: column;
    }
}