        /* Popup container */
        .popup {
            display: none; /* Hidden by default */
            position: fixed; 
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
            justify-content: center;
            align-items: center;
        }

        /* Popup content */
        .popup-content {
            position: relative;
            background-color: white;
            padding: 20px;
            width: 300px;
            height: 400px;
            border-radius: 5px;
            text-align: center;
        }

        /* Close button */
        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: red;
            border: none;
            font-size: 50px;
            color: white;
            cursor: pointer;
        }

        /* Animation text */
        .animation-text {
            position: absolute;
            top: 10px;
            width: 100%;
            font-size: 18px;
            color: red;
            animation: scrollText 5s linear infinite;
        }

        @keyframes scrollText {
            0% {left: 100%;}
            100% {left: -100%;}
        }

        /* Video styling */
        video {
            width: 100%;
            height: 100%;
        }

        .navbar {
            display: flex;
            align-items: center;
            background-color: #333;
            padding: 10px;
            margin-top: 0px;
            height: 25px;
        }

        /* Styling for the Home icon */
        .navbar a {
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
            font-size: 24px;
        }

        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

        /* Home icon */
        .navbar a .home-icon {
            font-size: 24px;
        }