:root {
  --bg: #fafafa;
  --text: #222;
  --muted: #666;
  --accent: #4a7c59;
  --border: #e0e0e0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

.page {
  max-width: 720px;
  margin: 4rem auto;
  padding: 2rem 1.5rem;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

h1::after {
  content: " 🌱";
}

p {
  margin: 1.2rem 0;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

li {
  margin: 0.4rem 0;
}

img {
  max-width: 100%;
  display: block;
  margin: 1.5rem 0;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}
