/* reset-ish */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 40px 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
  color: #222;
  background: #fafafa;
}

/* content width */
.container {
  max-width: 760px;
  margin: 0 auto;
}

/* typography */
h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  margin-top: 2.5rem;
}

p {
  margin: 0.8rem 0;
}

/* links */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* nav */
.nav {
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.nav a {
  margin-right: 16px;
  color: #555;
}

/* post list */
.post {
  margin-bottom: 2rem;
}

.meta {
  font-size: 0.9rem;
  color: #666;
}

/* footer */
footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #777;
}
