h2 {
    vertical-align: center;
    text-align: center;
  }
  
  html, body {
    margin: 0;
    height: 100%;
    background: #faf4e8;
  }

  body, li, a, h1, h2, h3, p, input, span {
    font-family: "Barlow", sans-serif;
  }

  h1, h2, h3 {
    text-align:center;
  }

  .centered-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlapping-layer {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }

  .overlapping-layer-bottom {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: end;
    padding-bottom: 2rem;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #00BAF0;
    background: black;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #FFF;
    height: 6rem;
    padding: 1em;
  }

  #top-logo {
    max-height: 4rem;
  }
  
  .menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  
  .menu > li {
    font-size: 1.2rem;
    margin: 0 1vw;
    overflow: hidden;
    border-bottom: 4px solid black;
    height: 100%;
  }

  .menu > li, .menu > li > a {
    color: rgb(245,166,75);
    font-weight: bold;
    text-decoration: none;
  }

  .menu > li:hover {
      border-bottom-color: rgb(245,166,75);
  }
  
  .menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  
  .menu-button::before {
    content: '';
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: '';
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }

  #covid-info-button {
    display: flex;
    background: rgb(181, 11, 11);
    border: 0.2em solid rgb(143, 11, 11);
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    padding: 30px;
    margin: 0.5rem 0 0.5rem 0;
    transition: background 0.5s ease, border-color 0.5s ease;
    box-shadow: 0 0.2rem 0.1rem rgba(0,0,0,0.5);
  }
  
  #covid-info-button:hover {
    color: rgb(186, 186, 186);
    background: rgb(143, 11, 11);
    border: 0.2em solid rgb(117, 11, 11);
    transition: background 0.75s, color 0.75s;
  }

  .social-media-logo {
    height: 1rem;
  }

  @media (max-width: 1450px) {
    .menu > li {
      margin: 0 0.5em;
      font-size: 0.9rem;
    }
    .social-media-logo {
      height: 0.7rem;
    }
  }

  @media (max-width: 1030px) {
    .menu > li {
      margin: 0 4vw;
      font-size: 1.5rem;
    }
    .social-media-logo {
      height: 1.5rem;
    }
    .menu-button-container {
      display: flex;
    }
    .menu {
      position: absolute;
      top: 0;
      margin-top: 6rem;
      left: 0;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-items: center;
    }
    #menu-toggle ~ .menu li {
      height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li {
      border: 1px solid #333;
      height: 2.5em;
      padding: 0.5em;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu > li {
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 0.5em 0;
      width: 100%;
      color: white;
      background-color: #222;
    }
    .menu > li:not(:last-child) {
      border-bottom: 1px solid #444;
    }
    #covid-info-button {
      font-size: 1rem;
      padding: 1rem 0 1rem 0;
    }
  }

  .big--button {
    border-radius: 1em;
    min-width: 10em;
    padding: 1em;
    font-size: 2em;
    text-decoration: none;
    color: rgb(190,190,190);
    margin: 1em;
    text-align: center;
    background: rgb(70,70,70);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }