body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Zorgt dat content boven de video staat */
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 250%;
  object-fit: cover; /* Zorgt dat video altijd het scherm vult */
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-family: Arial, sans-serif;
}

