* {
    margin: 0;
    padding: 0;
}

.container {
    width: 100vw;
    /* 100/56.25 = 1.778 */
    height: 56.25vw;

    background: black;
    max-height: 100vh;
    /* 16/9 = 1.778 */
    max-width: 177.78vh;

    margin: auto;
    position: absolute;
    top: 0;
    /* vertical center */
    bottom: 0;
    left: 0;
    /* horizontal center */
    right: 0;
}

.text {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5vw;
    color: white;

    text-align: center;
}

.text p {
    margin: 0;
}

.text #loading {
    width: 3.5vw;
}

.text #rotate {
    margin-top: 5%;
    width: 30vw;
}

.rotation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: black;
}

@media screen and (min-aspect-ratio: 16/20) {
    .rotation {
        display: none;
    }
}

#cursor {
    position: absolute;
    z-index: 500;
    width: 10px;
}

#debugText {
    position: absolute;
    z-index: 10000;
    background-color: white;
}

.fullscreen {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1500;
}

.fullscreen img {
    width: 40px;
}