body {
  font-family: Arial, sans-serif;
  background-color: #fffbe0; /* heller Hintergrund für alle Seiten */
  color: #333;
  padding: 20px;
}

h1 {
  color: #228B22; /* grün für Titel */
}

/* Navigation */
nav {
  margin-bottom: 20px;
}

nav a {
  text-decoration: none;
  color: #228B22;
  font-weight: bold;
  margin: 0 10px;
}

nav a:hover {
  color: #ff6600;
}

/* Listen */
ul li {
  margin-bottom: 10px;
}

/* Tabellen */
table {
  border-collapse: collapse;
  width: 50%;
  margin-bottom: 20px;
  text-align: center;
}

th, td {
  border: 1px solid #333;
  padding: 10px;
}

th {
  background-color: #ffcc33; /* Farbe für Fragen im Quiz */
}

td:hover {
  background-color: #ffd700; /* Hover-Effekt bei Antworten */
  cursor: pointer;
}

/* Antworten im Quiz */
td.correct {
  background-color: #4CAF50; /* grün für richtig */
  color: white;
}

td.wrong {
  background-color: #f44336; /* rot für falsch */
  color: white;
}

/* Buttons für alle Seiten */
button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 0 5px;
  cursor: pointer;
  background-color: #228B22;
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #ff6600;
}