body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

.container {
  padding: 2rem 2rem 6rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 10px;
  max-width: 1000px;
  margin: 3rem auto;
}

h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

p b {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Animation beim Scrollen */
p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

p:nth-of-type(2) { animation-delay: 0.1s; }
p:nth-of-type(3) { animation-delay: 0.2s; }
p:nth-of-type(4) { animation-delay: 0.3s; }
p:nth-of-type(5) { animation-delay: 0.4s; }
p:nth-of-type(6) { animation-delay: 0.5s; }
p:nth-of-type(7) { animation-delay: 0.6s; }
p:nth-of-type(8) { animation-delay: 0.7s; }
p:nth-of-type(9) { animation-delay: 0.8s; }
p:nth-of-type(10) { animation-delay: 0.9s; }
p:nth-of-type(11) { animation-delay: 1.0s; }
p:nth-of-type(12) { animation-delay: 1.1s; }
p:nth-of-type(13) { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  p {
    font-size: 1rem;
  }
}
