#bg-video {
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    object-fit: cover; /* Ensures the video covers the screen while maintaining aspect ratio */
    position: fixed; /* Sticks it to the screen */
    top: 0; /* Aligns the video to the top */
    left: 0; /* Aligns the video to the left */
    z-index: -1; /* Ensures the video stays in the background */
    background-color: black; /* Fallback color */
  }
