@import url('https://fonts.googleapis.com/css2?family=Cairo+Play:wght@700&family=Shadows+Into+Light&display=swap');

	body {
            margin: 0;
            padding: 0;
            overflow: hidden;
            font-family: Arial, sans-serif;
        }

        .video-background {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            overflow: hidden;
        }

        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.7); /* Adjust the overlay color and opacity as needed */
        }

        .container {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
            padding: 100px 0;
        }

        h1 {
            font-size: 36px;
	    font-family: 'Cairo Play', sans-serif;
        }
	h2 {
	    font-size:30px;
	    font-family: 'Shadows Into Light', cursive;
	}

        p {
            font-size: 20px;
	    font-family: 'Shadows Into Light', cursive;
        }