/* Vintage Newspaper Styling */

body {
  font-family: 'Libre Baskerville', serif;
  background-color: #fdfaf6;
  color: #2c2c2c;
  line-height: 1.6;
  margin: 0;
  padding: 2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Headings styled like newspaper titles */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #999;
  padding-bottom: 0.3em;
  margin-top: 2em;
  margin-bottom: 1em;
}

h1 {
  text-align: center;
}

/* Subtle drop cap for first paragraph */
/* p:first-of-type::first-letter {
  font-size: 1.5em;
  font-weight: bold;
  float: left;
  line-height: 1;
  padding-right: 0.1em;
  margin-top: 0.1em;
} */

/* Blockquote for oral history quotes */
blockquote {
  font-style: italic;
  border-left: 3px solid #ccc;
  padding-left: 1em;
  margin-left: 0;
  color: #555;
}

/* Caption styling */
figcaption {
  font-size: 0.9em;
  color: #666;
  text-align: center;
  margin-top: 0.5em;
}

/* Footer or citation notes */
footer, .citation {
  font-size: 0.8em;
  color: #888;
  border-top: 1px solid #ccc;
  margin-top: 2em;
  padding-top: 1em;
}

/* Optional: add a subtle paper texture */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('paper-texture.png');
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

.hut-drawing {
  display: block;
  margin: 0 auto;
  max-width: 50%;
  height: auto; /* Maintains aspect ratio */
}

.no-spacing {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.0;
}
