body {
            position: relative;
            margin: 0;
            padding: 0;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
        }

        /* Set the opacity of the video */
        video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the video covers the entire area */
            opacity: 0.5; /* Adjust this value to change the transparency (0 = fully transparent, 1 = fully opaque) */
        }
        body {
            background-color: #000000;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            width: 100vw;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 20px;
        }
        #buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-direction: column;
        }
        header {
           color: white;
           font-weight: bold;
            font-size: 80px;
        }
        a {
            color: white;
            text-decoration: none;
            font-size: 40px;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none; /* This allows interactions with elements underneath */
        }
