

.person {
    border-style: solid;
    border-width: medium;
    border-color: white;
    border-radius: 20%;
    background-color: darkred;
    box-shadow: 8px 8px 8px darkred;
    
    width: 256px;
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    
    color: white;
    font-size: 1em;
    text-align: center;
}

.headshot {
    border-bottom: solid white medium;
    width: 256px;
    height 256px;
}

#teamgallery {
    overflow: visible;
    margin: 5%;
    
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(281px, 1fr));
}

p {
    margin: 0;
    color: lightgray;
    font-size: 0.8em;
}

h1 {
    color: white;
    text-align: center;
}

a {
    text-decoration: none;
}