*{
    box-sizing: border-box;
}
body{
    background-color: #ffffff;
    color: #666666;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-image: linear-gradient(to bottom, #eeeeee, #ffffff);
    background-attachment: fixed;
    margin: 0px;
}
header{
    background-color: #ba1c21;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    grid-row: 1 / 2;
    grid-column: 2 / 8;
}
header h1{
    line-height: 240%;
    background-image: url(dsu.jpg);
    background-repeat: no-repeat;
    background-position: right;
    padding-left: 0.5rem;
    height: 72px;
    margin: 0;
}
nav{
    font-weight: bold;
    position: sticky;
    top: 0;
    background-color: #424242;
    grid-row: 2 / 3;
    grid-column: 2 / 8;
}
h2{
    color: #424242;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
dt{
    color: #ba1c21;
    font-weight: bold;
}
.dsu{
    color: #ba1c21;
    font-size: 1.2em;
}
footer{
    font-size: .70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: #ffffff;
    grid-row: 5 / 6;
    grid-column: 2 / 8;
}
#wrapper{
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0px, 175px)) minmax(0px, 1fr);
}
h3{
    color: #ba1c21;
}
main{
    padding-right: 2em;
    padding-left: 2em;
    display: block;
    background-color: #ffffff;
    padding-top: 1px;
    padding-bottom: 1px;
    grid-row: 4 / 5;
    grid-column: 2 / 8;
}
#homehero{
    background-image: url(homehero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3 / 4;
    grid-column: 1 / 9;
}
#studenthero{
    background-image: url(studenthero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3 / 4;
    grid-column: 1 / 9;
}
#facultyhero{
    background-image: url(facultyhero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3 / 4;
    grid-column: 1 / 9;
}
nav a{
    text-decoration: none;
    color: #ffffff;
    display: block;
    text-align: center;
}
nav a:hover{
    background-color: #ba1c21;
}
nav ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-flow: row, nowrap;
}
section{
    float: left;
    width: 33%;
    padding-right: 1rem;
}
.clear{
    clear: both;
}
header a{
    text-decoration: none;
    color: #ffffff;
}
#redbar{
    background-color: #ba1c21;
    grid-row: 1 / 2;
    grid-column: 1 / 9;
}
#greybar{
    background-color: #424242;
    grid-row: 2 / 3;
    grid-column: 1 / 9;
}
nav ul li{
    width: 100%;
}
@media screen and (max-width:1100px){
    #wrapper{
        display: grid;
        grid-auto-rows: minmax(0px, auto);
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0px, 150px)) minmax(0px, 1fr);
    }
}
@media screen and (max-width:900px){
    nav{
        grid-row: 2 / 3;
        grid-column: 1 / 5;
    }
    nav ul{
        flex-flow: column nowrap;
    }
    #homehero{
        grid-row: 2 / 3;
        grid-column: 5 / 8;
        height: auto;
    }
    #studenthero{
        grid-row: 2 / 3;
        grid-column: 5 / 8;
        height: auto;
    }
    #facultyhero{
        grid-row: 2 / 3;
        grid-column: 5 / 8;
        height: auto;
    }
    section{
        float: none;
        width: 100%;
        padding-right: 0px;
    }
    #alumnihero{
        grid-row: 2 / 3;
        grid-column: 5 / 8;
        height: auto;
    }
}
@media screen and (max-width:600px){
    header h1{
        background-image: none;
        text-align: center;
    }
    nav{
        grid-row: 2 / 3;
        grid-column: 1 / 9;
    }
    #homehero{
        display: none;
    }
    #studenthero{
        display: none;
    }
    #facultyhero{
        display: none;
    }
    #alumnihero{
        display: none;
    }
}
table{
    margin: 0 auto;
    border: 1px solid #424242;
    width: 100%;
    border-collapse: collapse;
}
td{
    padding: 5px;
    border: 1px solid #424242;
    text-align: center;
    border-collapse: collapse;
}
th{
    padding: 5px;
    border: 1px solid #424242;
    border-collapse: collapse;
}
.text{
    text-align: left;
}
table tr:nth-child(even){
    background-color: #f3f3f3;
}
form{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr);
    gap: 0.75rem;
    width: 100%;
}
input, textarea{
    font-size: 1rem;
    padding: 10px;
    color: #666666;
    background-color: #fafafa;
    border: none;
}
input, textarea:focus{
    outline: none;
    background-color: #f0f0f0;
}
label{
    padding: 10px;
    text-align: right;
}
#mySubmit{
    width: 10rem;
    grid-column: 2 / 3;
}
#alumnihero{
    background-image: url(alumnihero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3 / 4;
    grid-column: 1 / 9;
}