  @import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');

  * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      padding: 0;
      font-family: 'Courier Prime', monospace;
  }

  canvas {
      display: block;
      font-family: 'Courier Prime', monospace;
  }

  body {
      position: relative;
      width: 100%;
      height: 100vh;
  }

  body #scene {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }