@font-face {
  font-family: 't';
  font-weight: normal;
  src: url('373.woff2') format('woff2');
}

@font-face {
  font-family: 't';
  font-weight: bold;
  src: url('375.woff2') format('woff2');
}

:root {
  --color: rgba(255, 255, 255, 0.87);
  --background-color: #242424;

  color: var(--color);
  background-color: var(--background-color);

  font-family: 't', monospace;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;

  color-scheme: light dark;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: light) {
  :root {
    --color: #213547;
    --background-color: #ffffff;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1rem;
}

body {
  touch-action: none;
  min-height: 100dvh;
}

main {
  position: relative;
  z-index: 1;

  padding: 1lh 2ch;
  max-width: 40ch;

  color: transparent;
}

output {
  position: fixed;
  top: 0;
  left: 0;
  white-space: pre;
  pointer-events: none;
  user-select: none;
}

p {
  margin-block: 1lh;
}

b {
  color: dodgerblue;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: var(--background-color);
  background: var(--color);
}
