:root {
  color-scheme: dark;
  background: #171717;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #171717;
}

body {
  position: relative;
}

canvas {
  display: block;
  outline: none;
}

#engine-workbench-canvas {
  position: fixed;
  z-index: 1;
  inset: 0;
  width: 100vw;
  height: 100vh;
}

#engine-story-canvas {
  position: fixed;
  z-index: 2;
  width: 1px;
  height: 1px;
  visibility: hidden;
  border: 0;
  border-radius: 3px;
  background: #05080e;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 8%);
  touch-action: none;
}

#engine-story-canvas[hidden] {
  display: none;
}
