:root {
  color-scheme: light;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  background: var(--paper);
}

.stage {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 480px;
  background: var(--paper);
  isolation: isolate;
}

#tile-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: none;
  touch-action: none;
}
