*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --face: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ground: #000000;
  --ink: #ffffff;
  --quiet: #9a9a9a;
  --faint: #5f5f5f;
  --line: #3a3a3a;
  --neon: #00ffc8;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--face);
  font-size: 15px;
  line-height: 1.75;
  text-transform: lowercase;
}

main {
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
  padding: 1.5rem;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}

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

.wordmark {
  display: block;
  margin: 0 0 3rem;
  color: var(--neon);
  font-size: 30px;
  font-weight: 800;
  text-decoration: none;
}

h1 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
}

h2 {
  margin: 3rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

p,
ul {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.said {
  margin-bottom: 3rem;
  color: var(--quiet);
}

body.mark main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  min-height: 100dvh;
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
}

body.mark main > * {
  margin: 0;
}

.says {
  color: var(--quiet);
  font-size: 1.05rem;
}

.soon {
  color: var(--quiet);
}

footer {
  margin-top: auto;
  padding: 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
}

body.mark footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
}
