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