.topnav {
  	font-family: "Lato", Arial, sans-serif;
	overflow: hidden;
	background-color: var(--SlateBlue);
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 13px 16px;
  margin: auto;
  text-decoration: none;
  font-size: 17px;
}
.topnav a i, .topnav a:link i {
  color: white;
}

.topnav a.hide {
  display: none;
}

.topnav a:hover {
  background-color: rgba(108, 145, 203, 0.4);
  color: white;
}

.active {
  background-color: rgba(108, 145, 203, 0.4);
  color: white;
  height: auto;
  font-weight: bold;
}

.topnav .icon {
  display: none;
}

#menu_icon {
  	color: white;
  	font-size: 20px;
  	padding: 11px 16px;
}

@media screen and (max-width: 600px) {

  /* should an page require a different width, include the attributes below */
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }

  /* topnav.js adds responsive class */
  .topnav.responsive {
    position: relative;
  }
  
  .topnav.responsive .icon {
     position: absolute;
     right: 0;
     top: 0;
  }
  
  .topnav.responsive a {
     float: none;
     display: block;
     text-align: left;
  }
  
  .topnav.responsive a.hide {
     display: none;
  }
  
}
