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