/* Base styles and layout */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 24pt;
  background: #020617;
  color: #f8fafc;
  font-family: 'IBM Plex Mono', 'Inter', system-ui, sans-serif;
  overflow: hidden;
}

canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
