body {
   background-color: #deebf7;
   font-family: sans-serif;
   scroll-behavior: smooth;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  height: 70px; /* Höhe festlegen, wichtig für Stern-Positionierung */
    overflow: hidden; /* Sterne bleiben innerhalb */
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(6px);
    text-align: center;
    color: white;
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
  }
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation-name: twinkle;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}
  nav a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
  }

  nav a:hover {
    text-shadow: 0 0 8px #ffcc00, 0 0 16px #ffcc00;
  }

section {
    padding: 80px 20px 40px 20px; /* Platz für fixe Nav */
    min-height: 100vh;
}

h2 {
   margin-top: 10px;
}

/* h4 {
    margin-top: 5px;
}*/

p {
   margin: 5px;
   padding: 5px;
   font-size: 0.85rem;
}
blockquote {
   font-size: 0.88rem;
}
.sm {
   font-size: 0.75rem;
}
