@import "https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap";

/* frontend/index.css */
:root {
  --fg: #ffffffde;
  --bg: #242424;
}

html, body {
  height: 100%;
}

body {
  color: var(--fg);
  background: var(--bg);
  min-width: 320px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

#canvas {
  display: block;
  cursor: pointer;
  width: 100vw;
  height: 100vh;
}
