/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 44, 81); /* Background color behind video */
}

/* Video Styling */
video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 720px;
    max-width: 3840px;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay Image Styling */
.overlay-image {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 720px;
    max-width: 3840px;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none; /* Allow interactions with video */
}
