:root {
  --bg: #F6F5F2;
  --text: #1E1E1E;
  --muted: rgba(30, 30, 30, .65);
  --max: 680px;
  --essay-max: 720px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-serif, "IBM Plex Serif", Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
}

h1 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h2 {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 32px 0;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto {
  font-size: clamp(18px, 2.1vw, 20px);
  line-height: 1.65;
  margin: 0;
  white-space: pre-line;
  max-width: 720px;
}

.essay {
  max-width: var(--essay-max);
}

.essay .prose p {
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 1.6em 0;
}

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

.essay-list a,
.essay-list a:visited {
  color: inherit;
  text-decoration: none;
}

.essay-list a:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: rgba(30, 30, 30, .14);
  margin: 36px 0 22px 0;
}

.note {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.note:last-of-type {
  margin-bottom: 0;
}

.note a {
  color: inherit;
  text-decoration: none;
}

.note a:hover {
  text-decoration: underline;
}

.note br {
  line-height: 1.8;
}

.note-lens {
  margin-top: 16px;
  font-size: 15px;
  opacity: .9;
}

.app {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}