html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#main-body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#background {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}


#videoPlayer, #imagePlayer {
    object-fit: contain;  /* No stretching, keeps ratio */
    object-position: center; /* Centers media */
    width: 100%;
    height: 100%;
}

#top-bar {
    height: var(--top-bar);
    width: auto;
    background: #ffffff00;
}

@media (orientation: portrait) {
    #videoPlayer, #imagePlayer {
        height: 100%;
    }
}