
body{
   color: #666666; 
   background-color: #FFFFFF;
   font-family: Arial, Helvetica, sans-serif;
   background: linear-gradient(#eeeeee,#ffffff);
   background-attachment: fixed;
   margin: 0px;
}

header{
   color: #FFFFFF; 
   background-color: #BA1C21;
   font-family: Georgia, 'Times New Roman', Times, serif;
   grid-row: 1/2; grid-column: 2/-2;
}
header a{
    color: #ffffff;
    text-decoration: none;
}
h1{
   line-height: 240%; 
   background-image: url("dsu.jpg");
   background-repeat: no-repeat;
   background-position: right;
   height: 72px;
   padding-left: 0.5rem;
   margin: 0;
}


nav{
    font-weight: bold;
    position: sticky;
    background-color: #424242;
    grid-row: 2/3; grid-column: 2/-2;
}

h2{
    color: #424242;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
h3{
    color: #BA1C21;
}
main{
    padding-left: 2em;
    padding-right: 2em;
    display: block;
    background-color: #FFFFFF;
    padding-top: 1px;
    padding-bottom: 1px;
    grid-row: 4/5;
    grid-column: 2/-2;
}

dt{
    color: #BA1C21;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.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/-2;
}
#wrapper{
    display: grid;
    grid-auto-rows: minmax(0px,auto);
    grid-template-columns: minmax(0px,auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}
#homehero{
    height: 300px;
    background-image: url(homehero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    grid-row: 3/4; grid-column: 1/-1;
}
#studenthero{
    background-image: url(studenthero.jpg);
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    grid-row: 3/4; grid-column: 1/-1;
}
#facultyhero{
    background-image: url(facultyhero.jpg);
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    grid-row: 3/4; grid-column: 1/-1;  
}
#redbar{
    background-color: #BA1C21;
    grid-row: 1/2; grid-column: 1/-1;
}
#greybar{
    background-color: #424242;
    grid-row: 2/3; grid-column: 1/-1;
}
nav a{
    text-decoration: none;
    color: #FFFFFF;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
}
*{
    box-sizing: border-box;
}
nav a:hover{
    color: blue;
}
nav ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-flow: row nowrap;
}
section{
    float: left;
    width: 33%;
    padding-right: 1rem;
}
.clear{
    clear: both;
} 
nav ul li{
    width: 100%;
}
@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;
    }
#homehero, #studenthero, #facultyhero{
    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){
    h1{
        background-image: none;
        text-align: center;
    }
    nav{
        grid-row: 2/3;
        grid-column: 1/-1;
    }
    #homehero, #studenthero, #facultyhero{
        display: none;
    }
}
table,tr,td,th{
    border: 1px solid #424242;
    border-collapse: collapse;
}
table{
    margin: 0 auto;
    width: 100%;
}
td,th{
    padding: 5px;
    border: 1px #424242;
}
td{
    text-align: center;
}
.text{
    text-align: left;
}
tr:nth-of-type(2n){
    background: #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;
}