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

    html,
    body {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    body {
      background: #0a0a12;
      font-family: 'Space Grotesk', sans-serif;
    }

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

    canvas {
      display: block;
    }

    .info {
      position: fixed;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      font: 12px/1.4 'Space Grotesk', sans-serif;
      color: rgba(255, 255, 255, 0.25);
      pointer-events: none;
      text-align: center;
      user-select: none;
      letter-spacing: 0.04em;
    }