.SectionHeader {
  font-size: 1.6rem;
  text-align: center;
  padding: 40px;
  background-color: #aaa;
}

* {
  font-family: Verdana, Arial, Tahoma, sans-serif;
}

#Body {
  margin: 0px;
  background-color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#FooterSection {
  margin-top: auto;
}

.Header {
  margin: 0px;
  padding: 16px 16px 8px 16px; /*top, right, bottom, left*/
  background-color: #222;
  text-align: center;
  font-size: 2.5rem;
  color: white;
  font-weight: 400;
}

.Subheader {
  margin: 0px;
  padding: 0px 16px 16px 16px; /*top, right, bottom, left*/
  background-color: #222;
  text-align: center;
  font-size: 1rem;
  color: #ccc;
  font-style: italic;
  font-weight: 400;
}

#NavBarTopList {
  list-style-type: None;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(0, 153, 153);
  width: 100%;
  display: flex;
  justify-content: center;
}

.NavBarLink {
  display: block;
  color: black;
  padding: 4px 18px; /* Top/Bottom Left/Right*/
  text-align: center;
  text-decoration: none;
  font-size: small;
  transition: 0.2s;
  background-color: transparent;
}

.NavBarLink:hover:not(#Current) {
  background-color: aqua;
}

#Current {
  background-color: aqua;
}

#Footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #222;
  width: 100%;
}

.FooterText {
  padding: 8px 6px;
  text-decoration: none;
  color: #aaa;
  font-size: 0.5rem;
}

.FooterLink:hover {
  color: white;
}

@media only screen and (min-width: 1000px) {
  .FooterText {
    padding: 8px 20px;
    font-size: 0.6rem;
  }

  #NavBarTopList {
    justify-content: left;
  }
}
