/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: white;
  position: fixed;
  z-index: 1;
  width: 100%;
  opacity: 0.95;
  text-align: right;
}

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

.menu {
text-align: center;
}

/* Style navigation menu links */
.topnav a {
  color: rgba(110,122,95,1);
  padding: 14px 0px;
  text-decoration: underline;
  font-size: 14px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: white;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 14px;
  font-size: 24px;
}

.iconify {margin-right: 5px;}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: white;
  color: rgba(110,122,95,1);
}

/* Style the active link (or home/logo) */
.active {
  background-color: white;
  width: 100%;
  font-size: 16pt;
  color: rgba(110,122,95,0.9);
  padding: 14px;
  text-align: left;
}