﻿/*Style sheet form the staff page.*/

@import "site.css";

.body {
    width: 100%;
    height: 100vh;
}

.wrapper {
    min-height: 100vh;
    background-color: #FAFAFA;
    padding: 15px;
    box-shadow: 3px 3px 3px #FAFAFA;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 22px;
}

.nameAndTitle {
    margin-top: 0;
    line-height: 1;
}

.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.staff {
    width: 250px;
    height: 350px;
}


@media screen and (max-width: 1100px) {
    .parent {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
}




@media screen and (max-width: 550px) {
    .parent {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

}

