body {
  margin: 0;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url('img/background.jpg') no-repeat center center fixed; /* Hier das Hintergrundbild einfügen */
  background-size: cover;
  color: rgb(255, 255, 255);
  background-color: #000000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #747373;
  padding: 0.5rem 1rem;
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff9800;
}

.toggle-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

.toggle-button .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .toggle-button {
      display: flex;
  }

  .nav-links {
      flex-direction: column;
      background-color: #747373;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      display: none;
      text-align: center;
      gap: 0;
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      padding: 0.5rem 0;
  }
}
