/* One stylesheet, same origin, no font or script from anywhere else.
   A privacy policy that pulls a webfont from a third party is telling on
   itself, and these pages exist to say the app contacts nobody. */

:root {
  color-scheme: light dark;
  --fg: #16191d;
  --muted: #5b636d;
  --bg: #ffffff;
  --rule: #e3e6ea;
  --link: #1f5fbf;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fg: #e8ebef;
    --muted: #9aa3ad;
    --bg: #12161b;
    --rule: #262c34;
    --link: #78aaf0;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  max-width: 44rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  overflow-wrap: break-word;
}

header { margin-bottom: 2.5rem; }

h1 { font-size: 1.6rem; line-height: 1.3; margin: 0 0 .35rem; }
h2 { font-size: 1.1rem; margin: 2.25rem 0 .6rem; }

.sub { color: var(--muted); font-size: .9rem; margin: 0; }

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

ul { padding-left: 1.2rem; }
li { margin: .35rem 0; }

hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

.nav { font-size: .9rem; }
.nav a { margin-right: 1rem; }

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: .875rem;
}

/* The non-affiliation notice. Not decoration: it is the mitigation
   docs/feasibility.md §7.3 names for App Store guideline 5.2.1 / 4.1(c), so it
   is meant to be read rather than skimmed past. */
.disclaimer {
  margin-top: 2.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.bars { display: block; width: 76px; height: 76px; margin-bottom: 1.25rem; }
