body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

ul {
  line-height: 2; /* oder z. B. 1.8, 2.5 – je nach gewünschtem Abstand */
}

ol {
  line-height: 2; /* oder z. B. 1.8, 2.5 – je nach gewünschtem Abstand */
}


/* Grundlayout */
nav {
  position: relative;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Menü-Layout */
.menu ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu a {
  text-decoration: none;
  color: #fff; /* Weiß */;
  font-size: 1.6rem; /* oder z.B. 18px */
}

/* Mobile-Ansicht */
@media (max-width: 480px), (max-width: 768px), (max-width: 1024px), (min-width: 1200px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
  }

  .menu.open {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

header {
  background-color: #333;
  color: white;
  padding: 1em;
}

main {
  padding: 2em;
  background-color: white;
}

footer {
  text-align: center;
  padding: 1em;
  background-color: #eee;
}

