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