:root {
  --background-color: #fff;
  --text-color: #000;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
}

body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
}

a {
  font-weight: bold;
  color: var(--link-color);
  text-decoration: underline;
  transition: color 150ms ease-in-out;
}

a:hover {
  color: var(--link-color-hover)
}

.nowrap {
  white-space: nowrap;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #000;
    --text-color: #fff;
  }

  body {
    color: #fff;
    background: #000;
  }

}
