body {
  background-color: #0c0c0c;
  color: #eaeaea;
  font-family: 'EB Garamond', serif;
  max-width: 60ch;
  margin: 5vh auto;
  padding: 0 1rem;
  line-height: 1.6;
}

h1 {
  font-style: italic;
  font-size: 2em;
  margin-bottom: 1em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
}

img + em, img + p {
  display: block;
  text-align: center;
  font-size: 0.9em;
  color: #999;
  margin-top: -1.2em;
}

img.zoomable {
  cursor: zoom-in;
  transition: transform 0.2s ease;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 4px;
}

img.zoomable.enlarged {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  cursor: zoom-out;
  transition: none;
}

