    body {
      background: #ffffff;
      color: #000000;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .container {
      width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .header {
      background: #ff0000;
      color: #ffffff;
      text-align: center;
      padding: 10px;
      font-size: 20px;
      font-weight: bold;
    }

    .bericht {
      background: #e5e5e5;
      padding: 20px;
      text-align: justify;
      font-size: 13px;
      line-height: 1.4;
      margin-top: 10px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 8px;
      background: #e5e5e5;
      padding: 20px;
      margin-top: 20px;
      justify-items: center;
    }

    .gallery img {
      display: block;
      width: 140px;
      height: auto;
      cursor: pointer;
      border: none;
    }

    .video {
      text-align: center;
      padding: 0px;
      margin-top: 10px;
    }

    .footer {
      background: #cccccc;
      text-align: center;
      font-size: 11px;
      color: #959595;
      padding: 10px;
      margin-top: 10px;
    }
	/* Slideshow-Container */
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 10px auto;
  overflow: hidden;
}

/* Slides */
.slides {
  display: none;
  position: relative;
}

.slides img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pfeile */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background-color: rgba(0,0,0,0.4);
  border-radius: 0; /* eckig */
  user-select: none;
  z-index: 5;
  transition: background-color 0.3s;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Punkte unterhalb des Bildes, mittig */
.dots-overlay {
  position: absolute;
  bottom: 10px; /* Abstand vom unteren Bildrand */
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active, .dot:hover {
  background-color: rgba(255,255,255,0.9);
}


