* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  font-family: 'Montserrat', sans-serif;
}

#app {
  width: 100%;
  height: 100%;
}

canvas {
  /* Preserve the complete 1920x1080 stage in non-16:9 preview windows. */
  width: 100vw;
  height: 100vh;
  object-fit: contain;
}
