html,
body {
    background-color: black;
    color: white;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0;
    cursor: none;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.loading>#loadingDiv {
    position: absolute;
    top: 2.75vh;
    height: auto;
    right: 2vw;
    color: white;
    background-color: black;
    display: block;
    z-index: 1000;
    padding: 0.2vw;
}

body:not(.loading)>#loadingDiv {
    display: none;
}

#hideDiv {
    width: 100%;
    height: 100%;
    background: black;
}

#licenseBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483646;
    background-color: rgba(0, 0, 0, 1);
    animation: licenseBg-animation 300s linear 1;
}

@keyframes licenseBg-animation {

    0%,
    90% {
        background-color: rgba(0, 0, 0, 0);
    }

    100% {
        background-color: rgba(0, 0, 0, 1);
    }
}

#licenseDiv {
    text-align: center;
    font-size: 1vw;
    width: 400px;
    height: 80px;
    background-color: black;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    padding-top: 10px;
    margin-left: -200px;
    margin-top: -40px;
    z-index: 2147483647;
}
