body {
    background-color: #22b2b2;
    margin: 0;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 10px 20px;
  background-color: #B22222;
  border: 1px solid black; 
  font: black;
}

.header:hover {
  width: calc(95%);

}

#Logo {
  
  width: 125px;
  height: 125px;
  margin-right: auto;
  margin: -30px 0px -15px 0;
  
}

.nav-list {
  justify-content: flex-start;
  list-style: none;
  padding: 1rem;
 
}

.nav-list ul {
    list-style: none;
    display: flex;
}

.nav-list ul li {
  margin: 0 40px 0 40px;
}

.nav-list ul li a {
  box-shadow: inset 0 0 0 0 #22b2b2;;
  color: black;
  padding: 0 .25rem;
  margin: 0 -.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  text-decoration: none;
  font-size: 2rem;
}

.nav-list a:hover {
  color: #fff;
  box-shadow: inset 200px 0 0 0 #22b2b2;
  border-radius: 8px;
}

.dropDown {
  position: relative;
}

#DDList {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  padding: 0;
  margin: 0;
  list-style: none;
}


main {
  text-align: center;
}
