.video-background {
  position: relative; /* Allows positioning of content-overlay */
  width: 100%;
  height: 100vh; /* Occupy full viewport height */
  overflow: hidden; /* Hide any overflow from the video */
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the video */
  min-width: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover; /* Ensure video covers the entire container */
  filter: blur(6px); /* Apply the blur effect (adjust value as needed) */
  z-index: -1; /* Place the video behind other content */
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1; /* Place content above the video */
}

@media (max-width: 600px) {
  .video-background video {
    /* position: unset;
    top: unset;
    left: unset;
    transform: unset; */
    top: 0;
    left: 0;
    transform: unset;
    z-index: 1;
  }
}
