.topnav {
  overflow: hidden;
  background-color: #fff;
  border-bottom: #0088C8 2px solid;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  text-align: center;
  z-index: 1100;
}

.topnav a {
  /* Original: float: left; display: block; */
  display: inline-block;
  color: black;
  text-align: center;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;  
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #0088C8;
    color: white;
}

.topnav a:hover {
  background-color: #0088C8;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 800px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav { position: absolute; }
  .topnav.responsive {position: absolute;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }

}