:root {
  --ink: #f7f7f2;
  --paper: #111;
  --accent: #ff2e63;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow: hidden;
  overscroll-behavior: none;
}

#game {
  position: fixed;
  inset: 0;
  touch-action: none;
}

#stage {
  display: block;
  width: 100%;
  height: 100%;
}
