/* Style the navigation menu */
.topnav {
  background-color: #4A4E58;
  opacity:60%;
  position: fixed;
  width:100%;
  z-index:999;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
  background:#4A4E58;
}

/* Style navigation menu links */
.topnav a {
  color: #fff;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  /*background: #fff;*/
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #4A4E58;
  color: white;
}