html, body {
      margin: 0;
      padding: 0;     
      height: 100%;
      scroll-behavior: smooth;
      background-color: white;
   
    }

    .headline {
  position: absolute;
  top: 7px;
  left: 6px;
  font-size: 1.2rem;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  z-index: 5;
}


.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#slideshow-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#slideshow-image.fade-in {
  opacity: 1;
}

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      padding: 6px 10px;
      cursor: pointer;
      z-index: 10;
      user-select: none;
    }

    .arrow:hover {
  background-color: grey;
}


    .arrow.left {
      left: 15px;
    }

    .arrow.right {
      right: 15px;
    }




    .content {
      padding: 40px;
      background-color: white;
    }

    .text-section {
      max-width: 800px;
      margin: 0 auto;
      font-family: sans-serif;
      line-height: 1.6;
    }


.custom-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: grey; /* Beispiel-Farbe */
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
        z-index: 10;
}

.custom-button:hover {
  background-color: black;
}

#scrollToTopBtn {
  display: none; /* Anfangs versteckt */
}


.scroll-container {
  position: relative;
}

.info-button {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5); /* Beispiel-Farbe */
  color: black;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
          z-index: 10;
}

.info-button:hover {
  background-color: grey;
}





.music-button {
  padding: 3px 26px;
  font-size: 15px;
  border: none;
  border-radius: 0px;
  background-color: black;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.70); /* dezenter Schatten 0,30 */
}

.music-button:hover {
  background-color: #2F4F4F;
}


.music-button.blink {
  animation: blinkAnimation 1.5s infinite;
}

@keyframes blinkAnimation {
   0%   { background-color: #000000; }
  10%   { background-color: #000000; }
  20%   { background-color: #000000; }
  30%   { background-color: #000000; }
  40%   { background-color: #000000; }
  50%   { background-color: #000000; }
  60%   { background-color: #000000; }
  70%   { background-color: #000000; }
  80%   { background-color: #000000; }
  90%   { background-color: #000000; }
  100%  { background-color: #00FF00; } 
  }



@media (forced-colors: active) {
  body {
    background: Window;
    color: WindowText;
  }

  a {
    color: LinkText;
  }

  /* Weitere Anpassungen für hohe Kontraste */
}
