:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --link: #1a1a1a;
  --rule: #e5e5e5;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.portrait {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 32px;
}

h1 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.bio {
  margin: 0 0 40px;
  color: var(--text);
}

.posts {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.posts h2 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.posts p { margin: 0; }

footer {
  margin-top: 48px;
  font-size: 15px;
  color: var(--muted);
}

footer span { margin: 0 8px; }

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

a:hover { text-decoration: none; }
