/* Reset und Grundstile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000; /* schwarz */
  color: #fff; /* weißer Text */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  display: flex;
  justify-content: center; /* gesamte Seite horizontal zentrieren */
  padding: 20px;
}

/* Container für zentrierte Seite, Text linksbündig */
.container {
  max-width: 800px;
  width: 100%;
  text-align: left;
}

/* Header, Navigation und Menü */
header {
  text-align: center; /* Menü und Header zentriert */
  margin-bottom: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center; /* Menü zentrieren */
  gap: 1rem;
  margin-bottom: 0.5rem;
}

nav a {
  color: #FFA500; /* orange Links */
  text-decoration: none; /* keine Unterstreichung */
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline; /* unterstreicht beim Hover */
}

/* Andere Links auf der Seite */
a {
  color: #FFA500; /* orange */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Horizontale Linien */
hr {
  border: 0;
  height: 1px;
  background-color: #fff;
  margin: 1rem 0;
}

/* Hauptinhalt */
main {
  margin-top: 1rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa; /* leichtes Grau für Footer */
}

/* Bilder responsive und zentriert */
.responsive-image {
  max-width: 65%;   /* passt sich der Container-Breite an */
  height: auto;      /* Seitenverhältnis bleibt korrekt */
  display: block;    /* Block-Element für margin auto */
  margin: 1rem auto; /* 1rem oben/unten, auto links/rechts = zentriert */
}

details {
  margin: 1em 0;
}

summary {
  cursor: pointer;
  color: orange;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none; /* hides default arrow */
}



