/* Globale Stile */
body {
    font-family: "Comfortaa", cursive;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #012950, #0e85fc);
    color: #ffffff;
    position: relative;
  }
  
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/IMG_6873.PNG) center/cover no-repeat;
    background-attachment: fixed;
    opacity: var(--bg-opacity, 2);
    z-index: -1;
  }
  
  /* Header-Stile */
  header {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    animation: slideInLeft 1s ease forwards;
  }
  
  header img {
    max-width: 360px;
    margin: 0 auto;
  }
  
  header h1 {
    font-size: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
  }
  
  #address {
    color: blue;
  }
  
  /* Abschnitt-Stile */
  section {
    padding: 20px;
    text-align: center;
    animation: slideInRight 1s ease forwards;
  }
  
  /* Bildcontainer-Stile */
  .image-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    width: 100%;
  }
  .image-container img {
    width: 30vw; /* 30% der Viewport-Breite */
    height: auto;
    max-width: 100%;
}
  
.image {
    border: 2px solid #99ccff;
    border-radius: 10px;
    width: 100%; /* Änderung: Die Bilder nehmen immer 100% der Breite des übergeordneten Containers ein */
    height: auto; /* Stellt sicher, dass die Höhe proportional zur Breite bleibt */
    padding: 10px;
    box-sizing: border-box;
  }
  
  
  .image:not(:last-child) {
    margin-right: 20px;
  }
  
  /* Button-Stile */
  .button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Button-Stile */
.button {
    background: linear-gradient(to bottom, #b3d9ff, #99ccff);
    border: 2px solid #99ccff;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    margin: 0 10px 20px;
    cursor: pointer;
    transition: filter 0.8s ease;
    display: inline-flex; /* Änderung zu inline-flex */
    align-items: center; /* Zentrierung der Bilder */
    justify-content: center; /* Zentrierung der Bilder */
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
  }
  
  .button:hover {
    filter: brightness(170%);
  }
  
  .button img {
    display: block;
    width: 100%; /* Bilder füllen den gesamten Button aus */
    height: auto; /* Automatische Höhe */
  }
  
  .button-text {
    text-align: center;
    margin-top: 20px;
  }
  
  
  /* Info-Box-Stile */
  .info-box {
    border: 2px solid #99ccff;
    border-radius: 40px;
    padding: 20px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    margin: 0 auto;
    background: linear-gradient(to bottom, #024486, #b3d9ff), linear-gradient(to bottom, #b3d9ff, #99ccff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    opacity: 1;
    animation: fadeIn 1s ease forwards;
  }
  
  .info-box:not(:first-child) {
    margin-top: 20px;
  }
  
  .info-box p,
  li,
  h1 {
    font-size: 20px;
    text-shadow: 1px 1px 1px #ffffff;
    color: #eeeef2;
  }
  
  /* Footer-Stile */
  footer {
    text-align: center;
    padding: 20px;
    animation: slideInBottom 1s ease forwards;
  }
  
  footer img {
    max-width: 25%;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.5));
    opacity: 1;
    animation: fadeIn 1s ease forwards;
  }
  
  footer p {
    text-shadow: 2px 2px 5px #ffffff;
  }
  
  /* Animationen */
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slideInBottom {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Media Query für mobile Geräte */
  @media screen and (max-width: 600px) {
    header img {
      max-width: 80%;
    }
    footer video {
      width: 30%;
    }
    #address {
      font-size: 10px;
    }
  }
  
  /* Media Query für Desktop-Geräte */
  @media screen and (min-width: 601px) {
    footer video {
      width: 10%;
    }
    #address {
      font-size: 22px;
    }
  }
  