
<style>
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lander-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url("https://i.imgur.com/BK0pS16.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.content {
    text-align: center;
    font-size: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 7px;
    z-index: 10;
    position: relative;
}

.btn-primary {
    font-size: 22px;
    margin-top: 20px;
}

.video-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    display: none;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 115vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 800px) {
    .content {
        max-width: 90%;
    }

    h1 {
        font-size: 28px !important;
    }

    .content p {
        font-size: 20px !important;
    }

    .btn-primary {
        font-size: 22px !important;
        margin-top: 20px !important;
    }
}

@media (min-aspect-ratio: 16/9) {
    .video-container iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-container iframe {
        width: 177.78vh;
    }
}

</style>
