#heading {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;

    margin-top: 20vh;
}

#people_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10vh;
}

.person {
    margin-bottom: 5em;
    width: 40vw;
    display: flex;
}
.person img{
    width: 11vw;
    height: 11vw;
    margin-right: 5%;
    aspect-ratio: 1;
    object-fit: cover;
}
.person_name {
    margin-bottom: 10px;
}



/* Mobile Compatibility */
@media only screen and (max-width: 800px) {
    .person {
        flex-wrap: wrap;
        width: 80vw;
        margin: auto;
        margin-bottom: 5em;
        
        text-align: center;
    }
    .person img {
        width: 50vw;
        height: 50vw;
        
        margin: auto;
        margin-bottom: 1em;
    }
}
