.StaffGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1500px;
}

.StaffCard {
    width: 350px;
    height: 700px;
    background-color: #2D3749;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    margin: 1rem;
    
    > img {
        width: 160px;
        background: #1e253088;
        border-radius: 40px;
        padding: 10px;
    }
    
    > p {
        font-size: 25px;
        opacity: 80%;
        text-align: center;
    }
    
    > section { margin-top: 20px; font-size: 30px}
    > .DisplayName {
        margin-top: 20px;
        font-size: 40px;
        letter-spacing: -1px;
        color: white;
        opacity: unset;
        margin-bottom: 10px;
        text-shadow: currentColor 0 0 20px;
    }
}

.MtsHeader {
    margin-top: 80px !important;
    font-size: 50px !important;
}