.wp-site-blocks {
    display: none;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* White background */
    display: none; /* Hide splash screen by default */
    justify-content: center;
    align-items: center;
}

#splash-video {
    width: 140%; /* Set default width for mobile devices */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure video fills container while preserving aspect ratio */
    position: absolute; /* Position the video absolutely */
    left: 50%; /* Move the video to the center horizontally */
    top: 50%; /* Move the video to the center vertically */
    transform: translate(-50%, -50%); /* Center the video */
}

@media (min-width: 768px) {
    #splash-video {
        width: 100%; /* Set width to 100% for devices with a minimum width of 768px */
    }
}



