/* The same night the app is: black, one accent, nothing else. Three pages
   share this, and every page is readable at a phone's width first. */
:root {
  --bg: #000;
  --fg: #fff;
  --mute: #8b8b93;
  --line: #1c1c1f;
  --fill: #111114;
  --accent: #4cc2ff;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 0 20px 72px;
}

main {
  max-width: 40rem;
  margin: 0 auto;
}

header {
  max-width: 40rem;
  margin: 0 auto;
  padding: 40px 0 8px;
}

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

h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 24px 0 8px;
}

h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 36px 0 8px;
}

.home {
  color: var(--mute);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.lead {
  color: var(--mute);
  font-size: 18px;
}

.date {
  color: var(--mute);
  font-size: 13px;
}

ul {
  padding-left: 20px;
}

li {
  margin: 6px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 12px 0;
  font-size: 15px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px 10px 0;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--mute);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card {
  background: var(--fill);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0;
}

.card p:first-child {
  margin-top: 0;
}

.card p:last-child {
  margin-bottom: 0;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 14px;
  margin-top: 48px;
  padding-top: 20px;
}
