
#logo-wrapper {
  width:80%; 
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

#burgermenu {
  display: none
}

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  /* background-color: #333; */
  position: relative;
}

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

/* Style navigation menu links */
#myLinks a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  text-align: center;
}
.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;
  right: 0;
  /* top: 20px; */
  top: 0;
  color: black;
  opacity: 0.8;
  font-size: 30px;
  /* background-color: green; */
  margin-top: 4%;
  margin-right: -16px;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  /* background-color: #ddd; */
  /* color: black; */
}
#myLinks {
  background-color: #333;
}
/* Style the active link (or home/logo) */
#myLinks .active {
  /* background-color: #4CAF50; */
  color: white;
}
#myLinks a {
  color: white;
}


#navigation {
  /* background-color: blue; */ /* useful for debugging layout */
  position: relative;
  padding-left: 8vw;
  padding-right: 8vw;
}

#desktopnav {
  position: absolute;
  /* right: 50px; */
  right: 0px;
  padding-right: 8vw;
  top: 50px; 
  max-width: 50%;
  text-align: right;
  margin-right: -20px; /* get perfect navmenu alignment with content (on right edge) */
}
#desktopnav a {
  margin: 20px;
  text-decoration: none;
  letter-spacing: 2px;
  color: black;
  opacity: 0.3;
  line-height: 30px;
  font-size: 12px;
}
#desktopnav a.active {
  opacity: 0.8;
}


@media (max-width:699px) {
    #logo-wrapper {
        margin-left: 0;
    }
}

@media (max-width:1350px) {
  #desktopnav {
    display: none;
  }
  #burgermenu {
    display: block
  }
  #navigation {
    margin: 0;
  }
  .topnav a#logo {
    padding-top: 0;
    padding-bottom: 0;
  }
}
