/* Any 1920x1080 platform */
@media (min-width: 1920px) {

    html,
    body {
        margin: 0;
        padding: 0;
        width: 1920px;
        height: 1080px;
        overflow: hidden;
        background-color: black;
    }

    #splash-video,
    #splash-image {
        width: 1920px;
        height: 1080px;
        object-fit: cover;
        transition: opacity 0.5s ease;
        opacity: 1;
        position: absolute;
        top: 0;
        left: 0;
    }

    .hidden {
        display: none;
    }
}