/* body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
}*/
.container h1{
    color: orange;
}
.container {
    /* color: orange; */
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

#head{
    font-size: 6rem;
}
#head2{
    text-align: center;
    font-size: 3.5rem;
}
/*

h1 {
    color: #4a90e2;
}

p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px 0;
} */

/* Add any other styles as needed */
 body {
    margin: 0;
    padding: 0;
    font-family: 'Cursive', Arial, sans-serif;
    overflow: hidden;
}


        .video-container {
            position: fixed; /* Set fixed position to cover entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
        }

        .video-container video {
            width: 100vw; /* Set video width to viewport width */
    height: 100vh; /* Set video height to viewport height */
    object-fit: cover;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .content {
            font-family: Didot;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
        }

        h1 {
            font-size: 30px;
        }

        p {
            font-size: 18px;
        }

        .btn {
            display: inline-block;
            padding: 20px 45px;
            background-color: #ff0000;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px;
            font-size: 24px;
        }

        .btn:hover {
            background-color: #00b303;
        }

        .right-pane {
            text-align: center;
            position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: #333;
    color: orange;
    padding: 20px;
    overflow-y: auto;
        }

        

        .right-pane p {
            font-size: 25px;
            line-height: 1.5;
            color: black;
        }