.topnav {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #333;
  z-index: 999;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.selected {
  background-color: #0052cc;
  color: white;
}

.topnav .icon {
  display: none;
}

.topnav a:hover, {
  background-color: #555;
  color: white;
}

.right-float {
  float:right;
  list-style-type:none;
}

@media screen and (max-width: 1100px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1100px) {
  .topnav.responsive .icon {
    position: fixed;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}