.topnav {
  position: fixed;
  top: 0;
  z-index: 100;
  display: block;
  width: 100%;
  height: 45px;
  background-color: #3330;
  font-family: "Montserrat", Arial, sans-serif;
}

.topnav--solid {
  background-color: #333;
  box-shadow: 0 1px 5px rgb(0 0 0 / 18%);
}

.topnav a {
  box-sizing: border-box;
  height: 45px;
  padding: 0 min(2vw, 15px);
  display: flex;
  float: left;
  align-items: center;
  justify-content: center;
  color: #f2f2f2;
  font-size: min(5vw, 17px);
  text-align: center;
  text-decoration: none;
}

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

.topnav .topnav-link--right {
  float: right;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    display: flex;
    float: right;
  }

  .topnav.responsive {
    height: auto;
    background-color: #333;
  }

  .topnav.responsive .icon {
    position: fixed;
    top: 0;
    right: 0;
  }

  .topnav.responsive a {
    display: flex;
    float: none;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
}
