body {
    font-family: 'palantino', serif;
    font-size: 14pt;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    margin: 0 auto;
    max-width: 65ch;
    text-align: justify;
    counter-reset: page;
    
    color: rgb(37, 30, 3);
    background-color: #e8e5bf;
}
.special-italic {
  font-style: italic;
  font-size: 0.9em;
  letter-spacing: -0.5px;
  font-family: "Special Elite", "Courier New", monospace;
/* This for radio-newsreader voice */
}
header {
    text-align: center;
    font-weight: bold;
    break-after: page;
}
/* Reset and basic styling */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    
    
    /* Page setup for print */
    @page {
      size: 5.5in 8.5in; /* Standard novel size */
      margin: 0.75in; /* Standard margins */
    }
    
    /* For displaying in browser with similar layout */
    .page {
      width: 5.5in;
      height: 8.5in;
      padding: 0.75in;
      margin: 20px auto;
      position: relative;
      border: 1px solid #ddd;
      page-break-after: always;
      counter-increment: page;
      overflow: hidden;
    }
    
    /* Page number styling */
    .page::after {
      content: counter(page);
      position: absolute;
      bottom: 0.4in;
      width: 100%;
      left: 0;
      text-align: center;
      font-size: 10pt;
    }
    
    /* Chapter styling */
    .chapter {
      page-break-before: always;
      margin-top: 2in;
    }
    
    .chapter:first-of-type {
      page-break-before: avoid;
    }
    
    h1 {
      font-size: 25pt;
      margin-bottom: 2em;
      text-align: center;
    }
    
    p {
      text-indent: 1.5em;
      margin-bottom: 0;
      text-align: justify;
      widows: 2;
      orphans: 2;
    }
    
    p:first-of-type {
      text-indent: 0;
    }
    
    canvas {
    background-color: #ffffff;
    border: 1px solid #000000;
}
hr {width:80%; border-top: 3px double #000; margin: 40px auto;
}
span.redacted {
    color: black;
    background-color: black;
}

/* Absorbed from 1and2.html inline styles */

    img[alt=‘Shredded Time Title’] {
      box-shadow: 0 4px 16px rgba(0,0,0,0.4);
      border-radius: 6px;
    }
  