/** Load fonts from files **/
/* Caslon (headings) */
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-Italic.ttf');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-Bold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-BoldItalic.ttf');
  font-weight: 700;
  font-style: italic;
}
/* Caslon (body) */
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-Italic.ttf');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-Bold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: "Caslon";
  src: url('assets/fonts/Caslon/CaslonAntique-BoldItalic.ttf');
  font-weight: 700;
  font-style: italic;
}
/* Source Code Pro (mono) */
@font-face {
  font-family: "Source Code Pro";
  src: url('assets/fonts/SourceCodePro/SourceCodePro-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: "Source Code Pro";
  src: url('assets/fonts/SourceCodePro/SourceCodePro-Italic.ttf');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Source Code Pro";
  src: url('assets/fonts/SourceCodePro/SourceCodePro-Bold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: "Source Code Pro";
  src: url('assets/fonts/SourceCodePro/SourceCodePro-BoldItalic.ttf');
  font-weight: 700;
  font-style: italic;
}


:root {
  --head: 'Caslon';
  --body: 'Caslon', sans-serif;
  --mono: 'Source Code Pro';
  font-family: var(--body);
  font-size: 12pt;
  --offwhite: #fcf5e5;
  --green: #e0e5c1;
  --yellow: #9c453a;
  --red: #822000;
  --purple: #704cd9;
  --black: #000000;
}



body {
	
  line-height: 120%;
}


strong {
  color: var(--red);
  font-weight: 700;
}

p {
  margin-block-start: 2pt;
  break-inside: avoid;
}

blockquote hr {
  /* Within a blockquote */
  border-left-width: 6cm;
  margin-top: 2pt;
  margin-bottom: 2pt;
}

/** Blocks **/

.full-width {
  column-span: all;
}

blockquote {
  background-color: var(--green);
  padding: 12pt;
  border-top: 2pt solid var(--red);
  border-bottom: 2pt solid var(--red);
  border-left: 3pt solid var(--red);
  border-right: 3pt solid var(--red);
  margin: 1rem 0;
  color: var(--black);
}

blockquote blockquote {
  background-color: rgba(255, 255, 255, 0.5);
}

/** Tables **/
table {
  break-inside: avoid;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

thead, th {
  font-weight: 700;
}

tbody tr:nth-child(odd) {
  background-color: var(--green);
}

blockquote tbody tr:nth-child(odd), pre blockquote tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.2);
}

th {
  padding: 3pt 6pt;
  
}

td {
  padding: 3pt 6pt;
  color: var(--black);
}

.example {
  -webkit-columns: 4 150px;
  -moz-columns: 4 150px;
  columns: 4 150px;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}