div.staff{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    background-image: url("/static/img/background_staff.png");
    background-size: cover;
    background-position: center;
    padding-bottom: calc(var(--footerHeight)*0.7);
    flex-wrap: wrap;
}
#staff_header {
    width: 100%;
    text-align: center;
    font-family: 'greycliff-cf', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: calc(var(--headerText)*1.5);
    padding: calc(var(--footerHeight)*0.2) 0;
    color:white;
}
#left_column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 49% ;
    padding-right: 10px;

}
#right_column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 49% ;
    padding-left: 10px;
}
div.staff_card{
    width: 90%;
    height: calc(var(--footerHeight));
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 20px;
}
img.staff_photo {
    height: 100%;
    width: auto;
    border-radius: 20px;
}
div.staff_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 25px;
    text-align: left;
    text-wrap: wrap;
    font-family: 'greycliff-cf', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: calc(var(--footerSize)*0.75);
}
span.staff_name {
    font-size: calc(var(--footerSize)*0.9);
    color: var(--dark_blue_font);
    margin-bottom: 5px;
}
