/* Fullscreen video styling */
.main_content video {
  position: fixed; /* Use fixed to cover the viewport independently of scroll */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* Ensure the video is in the background */
}

@media all and (max-width: 1000px) {
  main {
    background-color: #fefefe;
  }

  .main_content video {
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  video {
    pointer-events: none;
  }
}
