:root {
  color-scheme: dark;
  --background: #1E1E1D;
  --heading: #FFFFFF;
  --text: #C8C8C8;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 32px;
  text-align: left;
}

.intro,
.links {
  width: 100%;
  max-width: 200px;
}

h1,
h2,
p,
ul {
  margin: 0;
}

h1,
h2 {
  color: var(--heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

p,
ul {
  color: var(--text);
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--heading);
}

a:focus-visible {
  outline: 1px solid var(--heading);
  outline-offset: 4px;
}
