/*
column half the size of a page (width of a book)
block-quotes in the sidebar


*/

body {
  font-family: "Palatino Linotype";
  letter-spacing: 0.2px;
  color: #383838;
  max-width: 100%;
  margin: 0 auto;
  overflow: scroll;
}

h1, h2, h3, p{
  max-width: 85%;
  margin: 15px auto;
}

h1, h2, h3{
  text-transform: uppercase;
  font-family: "Trebuchet MS";
  letter-spacing: 0.4px;
}

h1 {
  font-size: 30px;
  line-height: 40px;
  margin-top: 20px;
  margin-left: 10vw;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

#toctitle, #closenav{
  max-width: 85%;
  margin: 20px auto 10px;
  cursor: pointer;
}

ul {
  line-height: 27px;
  list-style-type: none;
  max-width: 85%;
  /*margin: 0 auto; */
  padding: 0;
}

nav {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  font-size: 1em;
  background-color: #f5f5f5;
  overflow-y: scroll;
  z-index:1000;
  left: 0;
  top: 0;
  /*padding-left: 0;*/
}

nav > ul {
  margin: 0 auto;
  font-size: 0.9em;
}

nav > ul > li {
  border-bottom: 1px solid #c5c5c5;
  margin-top: 10px;
  font-weight: 600;
}

nav > ul > li > ul > li {
  font-weight: normal;
}

li a{
  color: black;
  text-decoration: none;
}

img {
  width: 100%;
}

p {
  font-size: 1em;
  line-height: 25px;
}

#toctitle > i {
    font-size: 1.5em;
}

@keyframes blinker {  
  50% { opacity: .6; }
}

@keyframes fade-in {
   0% {opacity: 0;}
   100% {opacity: 1;}
} 


#back-to-top {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: rgba(85, 85, 85, 0.2);
  height: 50px;
  width: 50px;
  border: none;
  z-index: 2;
}

#back-to-top:hover{
  cursor: pointer;
}

blockquote {
  margin: 2% auto;
  max-width: 90vw;
  border-left: 5px solid #909090;
  background-color: #f3f3f3;
  color: #909090;
  padding: 2% 0;
}

@media screen and (min-width: 1000px) {
  p, ul{
    width: 50vw;
    margin-left: 10vw;
    line-height: 30px;
  }

  img {
    width: 50vw;
    display: block;
    margin-left: 10vw;
  }
  
  blockquote {
    position: relative;
    float: right;
    right: 7%;
    max-width: 25vw;
    -webkit-transform: translate(0,-10%);
    -ms-transform: translate(0,-10%);
    -o-transform: translate(0,-10%);
    transform: translate(0,-10%);
    clear: right;
  }

  blockquote > p {
    margin: auto;
    font-size: 95%;
    line-height: 25px;
  }

  blockquote > p::before{
    border-left: 1px solid black;
  }

  .fa-long-arrow-right{
    color: #909090;
  }
}