* {
  color: #101010;
}

a {
  color: #1515A0;
}
a:visited {
  color: #185113;
}

html {
  background-color: #e5e3e0;
}

body {
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
}
@media screen and (min-width: 48rem) {
  body {
    width: 90%;
  }
}


/* TODO: media query, use entire width on small viewports */

h1 {
  text-align: center;

  padding: 0;
  padding-top: 0.8em;
  padding-bottom: 0.5em;

  border-bottom: 0.1em solid #101030;

  margin: 0;
  margin-bottom: 0.8em;
}

p, pre, ul {
  padding: 0;

  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.9em;

  width: 98%;
  max-width: 720px;

  list-style-position: inside;
  list-style-type: disclosure-closed;
}
@media screen and (min-width: 48rem) {
  p, ul {
    width: 80%;
  }
}

li ul {
  margin-left: 2em;
  width: 100%;
}

p {
  text-align: justify;
}

p.light {
  /* TODO: include a font that supports different weights */
  font-weight: lighter;
  font-style: italic;
}

p.strong {
  font-weight: bold;
}

p.heavy {
  /* TODO: include a font that supports different weights */
  font-weight: bolder;
}

p.copyright {
  position: relative;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.8em;
  color: gray;
  bottom: 2px;
}

pre {
  max-width: 80ch;
  font-size: 0.9rem;
  overflow: scroll;

  /*
    Workaround for extending off screen on small viewports bc I cba
    to figure it out properly
  */
  width: 90%;
}
@media screen and (min-width: 48rem) {
  pre {
    /*
      Get rid of scrollbars on browsers that show them regardless of
      whether the content fits on screen or not
    */
    overflow: visible;

    /*
      force it back to 80ch when the workaround from above doesn't apply
    */
    width: 80ch;
  }
}

pre.terminal {
  color: #B5E550;
  background-color: #3F3F3F;
  border: 1px solid #101030;

  padding: 1em;
}

pre.paper {
  /* TODO: typewriter-look? */
  /* TODO: tractor feed ribbons? */
  background-color: #F0E6CE;
  border: 1px solid #101030;

  padding: 1em;
  padding-bottom: 0em;
}

span.paper.green {
  background-color: #D0DBA6;
}

span.quote.speech {
  color: #303030;
}
span.quote.speech::before {
  color: #101030;
  content: "\25b8";
  font-size: 0.75em;
  position: relative;
  bottom: 0.15em;
}
span.quote.speech::after {
  color: #101030;
  content: "\25c2";
  font-size: 0.75em;
  position: relative;
  bottom: 0.15em;
}
span.quote.speech * {
  color: #303030;
}

span.quote.non-speech {
  color: #303030;
}
span.quote.non-speech::before {
  color: #101030;
  content: "\25b9";
  font-size: 0.75em;
  position: relative;
  bottom: 0.15em;
}
span.quote.non-speech::after {
  color: #101030;
  content: "\25c3";
  font-size: 0.75em;
  position: relative;
  bottom: 0.15em;
}
span.quote.non-speech * {
  color: #303030;
}

span.chapter {
  color: inherit;
}
span.chapter::before {
  content: "\25b9";
  font-size: 0.75em;
  position: relative;
  bottom: 0.15em;
}
span.chapter::after {
  content: "\25c3";
  font-size: 0.75em;
  position: relative;
  bottom: 0.15em;
}

div.back {
	font-size: 2.8em;
	width: 1.3em;
	height: 1.3em;
	position: fixed;
	top: 0.4em;
}
div.back a {
  color: black;
  text-decoration: none;
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.3rem;
  border: 1.2px solid #97979a;
  background: #e9e9ed;
}
div.back a:hover {
  background: #d0d0d7;
  border: 1.2px solid #86868f;
}

.comment {
  font-style: italic;
  color: gray !important;
}