:root {
  color-scheme: dark;
  --bg: #060705;
  --ink: #f4f0df;
  --soft: rgba(244, 240, 223, 0.55);
  --green: #9dff6a;
  --cyan: #52f4ff;
  --amber: #ffbf57;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  background: #000;
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.stage {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  background: #000;
}

.ascii-plane {
  position: absolute;
  inset: -2rem;
  display: grid;
  place-items: center;
}

.ascii-canvas {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  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;
}

@media (max-width: 720px) {
  .ascii-plane {
    inset: -1rem;
  }

}
