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