@font-face {
    font-family: myOtherFont;
    src: url("fonts/Planes_ValMore.ttf");
} 

@font-face {
    font-family: myFont;
    src: url("fonts/MarioWorldPixelColor-3zBwX.ttf");
}
 
@font-face {
    font-family: myOtherOtherFont;
    src: url("fonts/angrybirds-regular.ttf");
} 

: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;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select:  none;
    font-family: myFont;
}
body{
   background-color: rgba(21, 1, 90);
}

div#gameWrapper{
    position: absolute;
    width: 720px;
    height: 1600px;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
}

/* ATP Game Studio */
section#manufacturerScreen{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 1, 90, 255);
}
section#preloadScreen{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
}
section#titleScreen{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
}
section#playScreen{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    background: url(images/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
}