.Navmenu {
  overflow: hidden;
  background-color: rgb(13, 145, 168, .5);
  position: relative;
  border-bottom: solid 2px #ffffff;
  display: flex;
  justify-content: right;
}
/* Style the links inside the navigation bar */ 
.Navmenu a {
  display: block;
  color: #ffffff;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  
}
/* Add an active class to highlight the current page */
.active {
  color: white;
  margin-right:auto;
}


/* Hide the link that should open and close the Navmenu on small screens */
.Navmenu .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, 
except for the first one ("Home"). Show the link that contains 
should open and close the Navmenu (.icon) */
@media screen and (max-width: 600px) {
  .Navmenu a:not(:first-child){
    display: none;
  }
  .Navmenu a.icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
}
 /* The "responsive" class is added to the Navmenu with JavaScript 
 when the user clicks on the icon. This class makes the Navmenu look good on small 
 screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .Navmenu.responsive {position: relative;}
  .Navmenu.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .Navmenu.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .Navmenu.responsive {float: none;}
  .Navmenu.responsive{position: relative;}
  .Navmenu.responsive{
    display: block;
    width: 100%;
    text-align: left;
  }
}