:root {
  color-scheme: light;
  --text: #111;
  --muted: #555;
  --line: #ddd;
  --link: #0645ad;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  line-height: 1.55;
}

.page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 48px;
}

.intro {
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.name {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 640px;
  font-size: clamp(36px, 7vw, 56px);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: 0;
}

section,
.updates {
  margin-top: 34px;
}

p {
  max-width: 660px;
  color: var(--text);
  font-size: 18px;
}

p + p {
  margin-top: 14px;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
}

.updates {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 28px, 720px);
    padding-top: 34px;
  }

  p {
    font-size: 17px;
  }
}
