html,
body,
#game-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  /* Pin to the viewport so tapping/dragging the game can't scroll or
     rubber-band the page on mobile. */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: rgba(255, 255, 255, 0.87);
  /* Match the app clear color / loading screen so there's no colored flash
     before the PIXI canvas paints. */
  background-color: #1e1e1e;
}

#game-container {
  position: relative;
}

canvas {
  display: block;
}
