.body {
  background-color: darkblue;
  font-family: "Fredoka";
  font-size: 24px;
  text-align: center;
  margin: 0;
  padding: 0;
}

.header {
  background-color: aqua;
  border-radius: 8px;
  text-align: center;
  font-size: 72px;
  margin: 20px 0;
  padding: 10px 0;
}

.Fakten-uber {
  background-color: white;
  display: inline-block;
  border-radius: 8px;
  padding: 5px 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.Fakten-text {
  color: white;
  font-size: 30px;
  text-align: center;
}

.Fakten-text p {
  margin: 50px 0; /* ← Abstand zwischen den Zeilen */
}

.markiert {
  color: yellow;
}

.Einhorn {
  color: pink;
}

.Dia {
  color: aqua;
}

.sterbi {
  color: red;
}

/* Gemeinsames Styling für alle Button-Container */
.button {
  display: flex;
  justify-content: center; /* zentriert den Button horizontal */
  margin: 20px 0;          /* Abstand oben/unten */
}

/* Grunddesign für alle Buttons */
.button button {
  height: 50px;
  width: 300px;
  border: none;
  border-radius: 8px;
  color: white;
  background-color: red;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
  cursor: pointer;
  transition: 
    border-radius 0.5s ease, 
    background-color 0.5s ease, 
    width 0.5s ease, 
    transform 0.2s ease;
}

/* Individuelle Farbvarianten */
.ich-button {
  font-size: 30px;
}

.kaputt-button {
  font-size: 25px;
}

.Muhaha {
  font-size: 27px;
}

/* Hover-Effekt mit „Feder“ */
.button button:hover {
  background-color: aqua;
  color: black;
  border-radius: 100px;
  width: 400px;
  transform: scale(1.05); /* kleiner Zoom-Effekt */
}

/* Optional: kleiner Glow-Effekt beim Hover */
.button button:hover {
  box-shadow: 0 0 20px aqua, 5px 5px 10px rgba(0, 0, 0, 0.8);
}


.link {
  color: white;
  text-decoration: none;
}

.link:hover {
  color: aqua;
  text-decoration: underline;
  font-size: 35px;
  margin-bottom: 10px;
}

.Berlin {
  border-radius: 8px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
}

.Karte-klarung {
  color: red;
}

.Karte-klarung:hover {
  color: aqua;
  text-decoration: underline wavy;
}
