

.topnav {
  overflow: hidden;
  background-color:hsl(139,23%,50%);  
  padding:0 20px;  
}


.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Calibri, Verdana, sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.topnav .logo {
  padding:0;
  cursor: default;
}

.topnav .icon {
  display: none;
}

.topnav a:hover {
  color:black;  
}

@media screen and (max-width: 1000px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .topnav.responsive {
    position:relative;
  }
    
  .topnav.responsive .icon {
    position: absolute;
    right: 20px;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  
}
