body {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

  background-color: #c1beae;
  color: #1f2407;
  margin: min(15rem, max(10%, 2rem));

  background-image: 
    /* Random subtle noise using radial gradient */
    radial-gradient(rgba(0,0,0,0.15) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.15) 1px, transparent 1px);

  /* Size of the noise */
  background-size: 4px 4px, 8px 8px;

  /* Blend mode to make noise subtle */
  background-blend-mode: overlay;
}

.text-display {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-style: normal;
}

.page {
    font-size: 1.2rem;
    max-width: 640px;
    display: flex;
    flex-direction: column;
}

.page header {
    order: 100;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page header:after {
    content: '';
    height: 2px;
    background: #1f2407;
    flex: 1;
}

.page p {
    line-height: 1.55;
    letter-spacing: -0.01rem;
}

.page p:nth-of-type(1) {
    margin-top: 0;
}

.page p + p {
    text-indent: 1.5rem;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
}
