.staff{
    margin-top: 3.4375rem;
}
.staffContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 70px;
    row-gap: 35px
}
.staffBox{
    background: #0A0A0A;
    width: 100%;
    border-radius: 24px;
}
.staffBox .staffName{
    font-family: 'Bangers', sans-serif;
    font-size: 2.1875rem;
    padding: 1.25rem 0;
    background-image: url(../../assets/images/staffBanner.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    border-radius: 24px 24px 0 0;
}
.staffBox.w-full{
    max-width: 100%;
}
.staffBox.w-half{
    max-width: calc((100% - 70px) / 2);
}
.users{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 30px;
    padding: 1.5625rem 2.1875rem;
}
.user{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: start;
    gap: 10px;
}
.user img{
    width: 100px; height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}
.user .username{
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-top: .5rem;
}