#navbar {
  overflow: hidden;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  height: 4em;
  z-index: 5000;
  padding-left: 15px;
  padding-right: 15px;
}

#list-container {
  display: none;
}

.navbar-logo {
  width: 170px;
  margin: 0px;
  margin-top: 15px;
  display: block;
}

.covid19-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #259225;
  height: 100%;
  color: white;
  padding: 20px;
}



a:visited {
  color: inherit;
}

@media only screen and (min-width: 1080px) {
  #navbar {
    padding-left: 50px;
    padding-right: 50px;
  }

  #list-container {
    display: flex;
    list-style-type: none;
  }
}
