@font-face {
    font-family: "game_font_1";
    src: url("../fonts/simple_font.ttf");
}

@media only screen and (max-device-width: 768px) {
@media screen and (orientation: portrait) {
  html {
    /* Rotate the content container */
    transform: rotate(90deg);
    transform-origin: right top;
    /* Set content width to viewport height */
    width: 100vh;
    /* Set content height to viewport width */
    height: 100vw;
    overflow-x: hidden;
    position: fixed;
    top: 100%;
    right: 0;
  }
}
}

#pixi-canvas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

