#navbar {
  overflow: hidden;
  position: sticky;
  position: -webkit-sticky;
  background-color: #00000055;
}

.navbar-item {
  display: block;
  color: #ffffff;
  text-align: center;
  padding: 5px 16px 5px 16px;
  text-decoration: none;
  margin: 10px 10px 10px;
  border-radius: 20px;
  font-size: 1.9vh;
}

.navbar-item:hover {
  text-decoration: underline;
  transition: all 0.3s;
}
.navbar-item--active {
  font-size: 1.9vh;
  text-decoration: underline;
  transition: all 0.2s;
}

@media only screen and (max-width: 1024px) {
  #navbar a {
    font-size: 1.5vh;
    line-height: 1.4vh;
  }
  #navbar {
    display: flex;
    flex-wrap: wrap;
    .navbar-item {
      margin: 6px 10px 6px;
    }
  }
}
