/* Basic page styling */
body {
  background: url("/images/background.png") no-repeat center center fixed;
  background-size: cover; /* stretches to fill the page */
  background-color: rgb(228, 231, 223); /* fallback colour */
  color: black;
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Main centered content box */
.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: white;
  border: 1px solid #ccc;
}

/* Indentation helpers */
.indent {
  margin-left: 40px;
}

.halfIndent {
  margin-left: 20px;
}

/* Link styling */
a {
  color: black;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

/* Image styling: prevents overflow and keeps aspect ratio */
img {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 10px auto;
}

/* Optional: centered figure with caption */
figure {
  text-align: center;
  margin: 20px 0;
}

figcaption {
  font-size: 0.9em;
  color: #555;
  margin-top: 5px;
}