article img {
  border: 1px solid #aaa;
  display: block;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

article {
  font-family: 'Special Elite', monospace;
  font-size: 0.9rem;
  line-height: 1.5rem;
  background-color: #fdfcf8;              /* slightly warm off-white */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  margin: 4rem auto;
  padding: 3rem 3rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fffdf8 url('/assets/paper-texture.png');
  background-size: cover;
  width: 66vw;
}

article p {
  text-align: justify;
  margin-bottom: 8px;
}

@media (prefers-color-scheme: dark) {
  article {
   box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
   background: #2b1f0f url('/assets/paper-texture.png');
   background-size: cover;
  }
}
article img.small{
  max-width: 25vw;
}

article img.medium{
  max-width: 40vw;
}

article img.large{
  max-width: 60vw;
}