.aquarium-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#aquarium-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; /* Legt das Video in den Hintergrund */
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 1;
  color: lightblue;
  text-align: center;
  top: 20%;
}