/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "Noto Serif", times, serif;
}

  .paper {
  font-family: "Noto Serif", "Times New Roman", times, serif;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  padding: 40px 0px;  
}

  div.container {
  max-width: 700px;
  width: 100%;
  padding: 0 0 0 0;
  box-sizing: border-box;
}

  div.script {
  line-height: 1.1rem;
  font-family: "Courier Prime", Courier, Consolas, monospace;
  font-size: 1rem;
}

  div.rev0 {
  background-color: #ffffff;
  color: #000000;
}

  div.rev1 {
  background-color: #b1deff;
  color: #000000;
}

  div.rev2 {
  background-color: #fec3dd;
  color: #000000;
}

  div.rev3 {
  background-color: #fffe95;
  color: #000000;
}

  div.rev4 {
  background-color: #97fbb9;
  color: #000000;
}

  div.rev5 {
  background-color: #ffd256;
  color: #000000;
}

  div.rev6 {
  background-color: #e1af80;
  color: #000000;
}

  div.rev7 {
  background-color: #ffccb6;
  color: #000000;
}

  div.rev8 {
  background-color: #fd82ab;
  color: #000000;
}

  div.title {
  text-align: center;
  font-family: courier, monospace;
}

  table {
  width: 100%;
}

  th.left {
  width: 17%;
  text-align: left;
  font-size: .95em;
  font-style: normal;
}

  th.slug {
  width: 71%;
  text-transform: uppercase;
  text-align: left;
  font-size: .95rem;
  font-style: normal;
}

  th.right {
  width: 11.8%;
  text-align: right;
  font-size: .95rem;
  font-style: normal;
}

  div.body {
  margin-left: 17.2%;
  margin-right: 11.8%;
  margin-bottom: 0;
  text-align: left;
}

  .header {
  margin-bottom: 0;
}

  .subheader {
  margin-bottom: 0;
}

  .action {
  margin-bottom: 0;
}

  .shot {
  margin-bottom: 0;
}

  .char {
  margin-left: 33.3%;
  margin-bottom: -1em;
  text-transform: uppercase;
  text-align: left !important;
}

  .paren {
  margin-left: 25%;
  margin-right: 33.3%;
  margin-top: 0;
  margin-bottom: -1em;
}

  .dialogue {
  margin-left: 16.7%;
  margin-right: 25%;
  margin-top: 0;
  margin-bottom: 0;
}

  .transition {
  margin-left: 66.7%;
  margin-bottom: 0;
  text-transform: uppercase;
}

  hr.third {
  width: 33%;
  margin: auto;
}

  hr.half {
  width: 50%;
  margin: auto;
}

  hr.full {
  width: auto;
  margin: auto;
}

  blockquote {
  margin: 0 10% 0 10%;
  display: block;
  border: none;
}

  .blockquote-inner {
  font-weight: normal;
  font-family: "Open Sans", "Roboto", "Helvetica", sans-serif;
  margin: 2rem 2rem 0 2rem;
  display: block;
  font-size: 1rem;
  border: 0px solid red;
}

  .blockquote-inner p {
  text-indent: 0;
  text-align: center;
}

  .blockquote-inner:before,
  .blockquote-inner:after {
  font-size: 5.5rem;
  margin: 0;
  padding: 0 0 0.3rem;
  position: relative;
  height: 1.5rem;
  border: 0px solid green;
}

  .blockquote-inner:before {
  content: "\201C";
  float: left;
  margin-left: -15px;
  top: -2.35rem;
}

  .blockquote-inner:after {
  content: "\201D";
  float: right;
  top: -3.85rem;
  margin-right: -15px;
  margin-bottom: -10px;
}

  clearfix {
  content: "";
  display: block;
  clear: both;
  margin: 0;
  padding: 0;
  height: 0;
}

  .paper h2 {
  font-family: "Open Sans", "Roboto", "Helvetica", sans-serif;
  font-size: 2.2rem;
  margin-bottom: -1rem;
}

  .big {
  font-size: larger;
}

  .professor {
  font-family: "Rock Salt", "Ink Free", "Caveat", "Lucida Handwriting", hand;
  line-height: .7rem;
  color: #bd1907;
}

.aivo {
  font-family: "Fuggles", "Lucida Handwriting", hand;
  color: #5703EF;
}

nav {
  z-index: 99;
  background-color: lightgrey;
  position: absolute;
  padding: 10px;
  height: 94.5vh;
  width: 60px;
  font-family: "Silkscreen";
  font-size: .6rem;
}

.navlink{
  font-family: "Silkscreen";
  font-size: .55rem;
  background-color: white;
  display: block;
  padding: 4px;
  margin: 4px 2px 2px;
}

.navlink a{
    color: black;
}

.navlink a:hover{
  color: darkred;
}

.wrapper {
  display: flex;
  justify-content: space-between;
}

.main,
.sidebar {
  padding: 5px;
  background-color: #fff;
}

.main {
  width: 95%;
  height: 100%;
  padding-left: 65px;
}

.sidebar {
  width: 10%;
    height: 1vh;
    position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

a{
  color: darkred;
}
a:hover{
  color: red;
}