body {
    margin: 0;

    background-color: black;
}

#loading-container {
    position:absolute;
    z-index: 0;

    background-color: black;
    opacity: 100%;
    
    transition-property: opacity;
    transition-duration: 500ms;
}
/* @keyframes loadingVideo-close {
    from {
        opacity: 100%;
        display: flex;
    }

    90% {
        opacity: 100%;
    }

    99% {
        display: flex;
        opacity: 0%;
    }
    to {
        display: none;
        opacity: 0%;
    }
} */

.container {
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-content: center;
}

video {
    width: 100vw;
    height: 100vh;
}