/* Style the navigation menu */

.topnav {
  overflow: hidden;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
}

/* Add effect on mouse-over */
.topnav a:hover {
  text-decoration: underline;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #04aa6d;
  color: white;
}

.topnav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
