/*Hier beginnt die NAV-BAR*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #3a3c47;
  position: sticky;
  top: 0;
}

li {
  float: left;
  border-right: 1px solid #bbb;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Wechselt die Farbe beim drüberfahren! */
li a:hover {
  background-color: #35d77b;
}

.active {
  background-color: #4CAF50;
}

li:last-child {
  border-right: none;
}
/*Hier endet die NAV-BAR*/
