:root {
  color-scheme: dark;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: #03131f;
  color: #efffff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  min-height: 100vh;
  cursor: crosshair;
}

#world {
  display: block;
  width: 100vw;
  height: 100vh;
  background: #03131f;
  touch-action: none;
  user-select: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript {
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  padding: 2rem;
  color: #d8f8c6;
  background: #03131f;
  text-align: center;
}

.noscript h1,
.noscript p {
  margin: 0;
}
