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