/* Alle Elemente mit box-sizing für bessere Kontrolle */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(146, 208, 80);
  background-color: #e1fcd7;
}

/* Haupt-Container */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Inhalt bleibt oben */
  padding: 20px;
  min-height: 100vh; /* Container füllt den Viewport */
  width: 100%;
  background: none;
  overflow-y: auto; /* Falls der Inhalt zu groß ist, wird er scrollbar */
}

/* Content-Container */
.content {
  width: 80%;
  max-width: 1200px;
  text-align: center;
  padding-bottom: 150px; /* Platz für das Logo reservieren */
  background-color: transparent;
}

/* Logo-Container */
.logo-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  text-align: center;
}

.logo {
  width: 100%; /* Passt das Logo an die volle Breite des Bildschirms an */
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

/* Liste und Text */
ul {
  color: black;
  text-align: left;
  list-style-type: disclosure-closed;
  padding-left: 20px;
}

p {
  color: black;
  text-align: left;
}

/* Anpassungen für kleine Geräte (max-width: 600px) */
@media only screen and (max-width: 600px) {
  .content {
    width: 90%; /* Verkleinerung des Inhalts */
    font-size: 0.85em; /* Kleinere Schriftgröße */
    padding-bottom: 100px; /* Weniger Abstand für das Logo */
  }

  .logo {
    width: 100%;
    height: auto;
  }
}

/* Anpassungen für Landscape-Modus */
@media only screen and (orientation: landscape) {
  .content {
    width: 60%;
    font-size: 1em; /* Etwas größere Schriftgröße */
    padding-bottom: 100px;
  }
}
