/* Seiten-Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: sans-serif;
  }
  
  /* Hintergrund-GIF */
  .background img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Text-Overlay */
  .overlay {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* leicht abgedunkelt für bessere Lesbarkeit */
    color: white;
  }
  
  .overlay h1 {
    font-size: 2rem;
    padding: 1rem;
    border-radius: 12px;
  }
  