:root {
  color-scheme: light;
  background: #fff;
}

* {
  box-sizing: border-box;
}

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

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

#stage {
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
}

#stage:focus-visible {
  outline: 3px solid #0645f5;
  outline-offset: -3px;
}
