.left {
  float: left;
  max-width: 50.00%; /* Bild nimmt höchstens 50% der Breite ein */
  margin-right: 1em;
  margin-bottom: 1em;
  height: auto; /* sorgt für korrektes Seitenverhältnis */
}
:root {
      --video-width: 640px;
      --video-height: 480px;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      padding: 20px;
    }

    h1 {
      text-align: center;
    }

    .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

.video-container {
  width: calc(var(--video-width) + 20px);
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-align: center;
}

    video {
      width: var(--video-width);
      height: var(--video-height);
    }

    .caption {
      margin-top: 8px;
      font-weight: bold;
    }
  #backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #555;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  opacity: 0.8;
}

#backToTopBtn:hover {
  background-color: #333;
}

/* Bildbreite für alle dp-image-Bilder überschreiben */
.dp-image {
    width: 100%;
    max-width: 600px ; 
    height: auto;
    margin: 0 0 1.5em 0;  /* Nur unterer Abstand (1.5em), kein Auto-Zentrieren */
    display: block; /* Vermeidet unschöne Abstände */
}
