#screensaver {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 1000; /* Make sure it covers other content */
}

#screensaverVideo, #screensaverImage {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the content covers the full area */
}
