/* Globale Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #333; /* Hintergrundfarbe hinzugefügt, optional */
  }
  
  /* Header-Stile */
  header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  /* Hauptbereich-Stile */
  main {
    padding: 20px;
    width: 80%; /* Beispiel: 80% der Breite des Viewports */
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-wrap: wrap; /* Neue Zeile, wenn nicht genug Platz vorhanden ist */
    justify-content: center; /* Zentrieren Sie die Elemente horizontal */
  }
  
  /* Stil für Listenelemente innerhalb der Main-Section */
  main nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Neue Zeile, wenn nicht genug Platz vorhanden ist */
    justify-content: center; /* Zentrieren Sie die Elemente horizontal */
  }
  
  main nav ul li {
    flex: 0 1 auto; /* Flexbox-Eigenschaften, die minimale Breite ist 50px */
    margin: 10px; /* Abstand zwischen den Listenelementen */
    background-color: #336633; /* Dunkelgrün */
    padding: 40px 60px; /* Vierfaches Padding für Höhe und Breite */
    border-radius: 5px;
    transition: background-color 0.3s; /* Animationsübergang für Farbwechsel */
  }
  
  main nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  main nav ul li:hover {
    background-color: #66cc66; /* Hellgrün */
  }
  
  /* Footer-Stile */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  