html {
  color: var(--licorice);
  background-color: var(--isabelline);
  min-height: 100%;
}

body {
  margin: 0;
  padding-top: 1em;
  padding-bottom: 2em;
  hyphens: auto;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-family: "Crimson Text";
  font-weight: normal;
  font-size: 1.2em;
  text-shadow: 0px 1px 1px var(--black-bean-8pc);
}

::selection {
  /* color: var(--isabelline); */
  background-color: var(--cambridge-blue);
}

header#title-block-header { display: none }

body > section {
  margin: 0 auto;
  max-width: 24em
}

.go-home {
  font-weight: 400;
  font-family: "Crimson Text";
  color: var(--licorice-50pc);
  position: fixed;
  bottom: .75em;
  right: .75em;
}
.go-home:hover { color: var(--licorice) }

p {
  line-height: 136%
}

a {
  color: var(--licorice);
  text-decoration: none;
  border-bottom: 1px var(--licorice-50pc) dotted;
}
a:visited { color: var(--black-bean) }
a:hover {
  border-bottom: 1px var(--licorice) solid;
}
a.mastodon-verif { display: none }

h1, h2, h3, h4, h5 { font-weight: bold }
h1 { font-size: 1.85em }
h2 { font-size: 1.2em }

.at::after {
  content: "@";
  font-family: monospace;
}

.crumb::after { content: "⪢" }
h1 .crumb::after {
  font-family: "Crimson Text";
  font-size: .55em;
  position: relative;
  bottom: 3px;
  margin: 0 .5ex 0 .5ex;
}

ul { padding-left: 0 }
ul li { padding-left: 2ex }
ul li::marker { content: "⟣" }

@media print {
  html {
    background-color: white; }
  body {
    background-color: transparent;
    color: black;
    font-size: 12pt; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2, h3, h4 {
    page-break-after: avoid; }
}