body {
  background-color: #d9c7a1; /* outer background */
  font-family: 'Garamond', 'Times New Roman', serif;
  line-height: 1.6;
}

.scroll {
  background: #f6eddc; /* parchment color */
  color: #2b1b0f; /* soft black/brown ink */
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;

  border: 2px solid #c2a678;
  border-radius: 8px;

  box-shadow: 
    0 0 10px rgba(0,0,0,0.2),
    inset 0 0 20px rgba(0,0,0,0.1);

  /* subtle aged effect */
  background-image: linear-gradient(
    to bottom,
    rgba(255,255,255,0.3),
    rgba(0,0,0,0.05)
  );
}
.scroll {
  background: radial-gradient(circle at center, #f6eddc 70%, #e4d2a3 100%);
}

.fixed-line {
  width: 50ch;   /* roughly 50 characters per line */
}

footer {
  background: #2b1b0f; /* dark brown/black */
  color: #f6eddc; /* parchment text */
  text-align: center;
  padding: 15px 0;
  font-family: 'Garamond', 'Times New Roman', serif;
  font-size: 14px;

  border-top: 2px solid #c2a678;
  letter-spacing: 1px;
}