#render {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#alert {
    width: 100%;
    height: 100%;
    background-color: #ffbfbf;
    position: fixed;
    top: 100vh;
    left: 0;
    z-index: 2;
}

#watchPadding {
    /*pixels, that the text is visible on a apple watch browser*/
    height: 100vh;
}

#game {
    border: 2px solid aqua;
    height: calc(100vh + 50px);
    width: 100vw;
}

#scroll {
    width: 100%;
    height: 300vh;
}

#scrollInfoWrapper {
    color: gray;
    font-size: 0.8em;
    position: fixed;
}


#calibratePadding {
    height: 50vh;
}

#calibrate {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    z-index: 2;
}

#calibrateLine {
    width: 100%;
    height: 4px;
    background-color: rgb(89, 0, 255);
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 2;
}



/*GAME*/
#game {
    background-color: black;
}

#player {
    width: 2%;
    height: 2%;
    background-color: red;
    position: fixed;
}

.platform {
    background-color: yellowgreen;
    position: fixed;
    width: 4%;
    height: 12%;
}