.staff-card {
    width: 250px;
    height: 350px;
    /* border: 1px solid; */
    overflow: hidden;
    margin: 20px;
    border-radius: 7px;
    box-shadow: 4px 4px 10px 0px rgb(109, 109, 109);
    transition: 0.3s;
}

.image-container {
    width: 250px;
    height: 250px;
    background: var(--red);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.staff-card img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.label {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.staff-card i {
    padding: 5px;
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 900px;
    flex-wrap: wrap;
    margin: auto;
}

h1 {
    font-family: montserrat, sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    margin: 20px;
}