body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents scrolling */
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background-color: black; /* Default background color */
}

#desktopVideo, #mobileVideo {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Adjust as needed */
}

/* Initially hide the mobile video */
#mobileVideo {
    display: none;
}

.content {
    position: absolute;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
}

h1 {
    font-size: 50px;
    margin: 0;
}

p {
    font-size: 20px;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
    #desktopVideo {
        display: none;
    }
    #mobileVideo {
        display: block;
    }
}
