body {
  margin: 0;
  height: 100vh;
  background-color:  #FFBF00; /* Exakt dein Gelb aus dem Bild */
  color: #000000; /* Schwarze Schrift für hohen Kontrast */
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo {
  width: 220px;
  max-width: 60%;
  height: auto;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
  animation: fadeIn 2s ease-in-out;
}

p {
  font-size: 1.2rem;
  margin: 4px 0;
  animation: fadeIn 2.5s ease-in-out;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }
  p {
    font-size: 1rem;
  }
}

