:root {
  color-scheme: dark;
  background: #081117;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, #10212a 0%, #081117 58%, #120d12 100%);
}

canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  background: #081117;
  touch-action: none;
}
