
@font-face {
    font-family: myFont;
    src: url("fonts/MarioWorldPixelColor-3zBwX.ttf");
}
@font-face {
    font-family: myOtherFont;
    src: url("fonts/Planes_ValMore.ttf");
}
@font-face {
    font-family: myOtherOtherFont;
    src: url("fonts/videotype.otf");
}
:root{
    --hue: 200;
}
@media screen and (orientation: landscape) {
    #rotate-device-div {
        display: flex; /* or block */
    }
}

@media screen and (orientation: portrait) {
    #gameWrapper{
        width: 100%;
        height: 100%;
    }
    #rotate-device-div {
        display: none;
    }
}
#rotate-device-div{
    position: absolute;
    background-color: black;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
div#rotate-device-div #rotate-device-text{
    color: white;
    font-family: myOtherFont;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

*{
    font-family: myFont;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}
div#gameWrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body{
    background-color: rgba(21, 1, 90, 255);
}