#team-container{
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(3, 1fr);
    max-width: fit-content;
    margin: 60px auto;
    justify-content: center;
    font-size: 0.8rem;
}
.team-member{
    width: 250px;
    height: fit-content;
    margin:10px
}
.team-member:hover{
    cursor: pointer;
    width: 260px;
    height: fit-content;
    margin:0;
}

.team-member-name{
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 4em;
    text-align: center;
    font-size: 1.2em;
}

.team-member-name p {
    margin: 0;
}
.team-member img{
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    object-fit:cover;
}
