*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:   #1a1008;
  --paper: #f5f0e8;
  --rule:  #c8bda8;
  --muted: #7a6e60;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
}

body {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

header {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

header h1 {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

article {
  margin-bottom: 4rem;
}

article h2 {
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

article .date {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

article img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--rule);
}

footer {
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
