body {
    background-color: #0c0c0c;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigationsleiste */
#navigation {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1%;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
}

#icon img {
  width: 17%;
  height: auto;
}

#navigation #menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  position: relative;
}

#navigation #menu li {
  padding-left: 4vw; /* Anpassung der relativen Einheit */
  padding-right: 1vw; /* Anpassung der relativen Einheit */
  position: relative;
}

#navigation #menu li a {
  color: white;
  font-weight: lighter;
  text-decoration: none;
  font-size: 1.3vw;
  position: relative;
  padding: 0.5vw 1vw; /* Anpassung der relativen Einheit */
  border-radius: 5vw;
  transition: background-color 0.05s ease, color 0.05s ease;
}

#navigation #menu li:hover a,
#navigation #menu #active a {
  background-color: rgb(171, 0, 0);
  text-decoration: none;
}

#hinweis p {
  color: rgb(195, 195, 195);
  font-size: 0.9vw;
}

#hinweis {
  margin-left: 2vw;
}