/* 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: #424242;
  color: white;
  font-size: 0.975em;
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #a8a8a8;
  }
  
a:hover {
  color: #c8c8c8;
  }
  
  
.main {
  margin: 0 auto;
  margin-top: 75px;
  width: 620px;
  border: 1px solid white;
  background: #222;
  color: white;
  box-shadow: 3px 3px white;
  padding: 25px;
  padding-top: 0;
  padding-bottom: 10px;
  margin-bottom:50px;
  }
  
.button {
  background:#424242;
  padding: 0.4em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  margin-left: 0.15em;
  margin-right: 0.15em;
  border-radius: 0.15em;
  }
  
.button:hover {
  background: #525252;
  }
  
.toc .button {/*
  width: 45%;
  display:inline-block;*/
  margin-top:0.5em;
  margin-bottom:0.5em;
  }
  
.chapter-menu {
  text-align: center;
  margin: 1.5em;
  }
  
.chapter-menu a, .toc a {
  text-decoration: none;
  }
  
.chapter-menu .button {
  display: inline-block;
  }
  
.listing {
  background:#323232;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top:1em;
  margin-bottom:1em;
  }
  
.listing-fandom {
  font-size: 0.875em;
  padding: 0;
  line-height: 1.5em;
 }
 
.listing-multi {
  background:#323232;
  margin-top:1em;
  margin-bottom:1em;
  overflow-y:auto;
}  
  
.listing .listing-fandom a {
  color: #c2c2c2;
  }
  
.listing .listing-fandom a:hover {
  color: #e2e2e2;
  }
 
.tag {
  border-bottom: 1px dotted white;
  margin-left: 1px;
  margin-right: 1px;
  }
  
.tag:after {
  content: ","
  }
  
.last:after {
  content: "";
  }
  
.fic {
  font-size: 0.95em;
  }
  
.fic hr {
  width: 60%;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  }
  
.fic p {
  line-height:1.65em;
  }


  
.footer {
  text-align: center;
  }
  
.summary-label, .notes-label {
  font-size: 1em;
  line-height: 1.125em;
  }
  
  
.listing-fandom blockquote, .listing blockquote {
  border-left: #999 2px solid;
  padding-left: 0.65em;
  margin-left: 1.35em;
  }
  
  
/*INFOBOXES*/
  
/*.infobox {
  font-size: 0.85em;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.5em;
  background: #323232;
  color: white;
  height: 100%;
  margin: 0;
  }
  
.infobox a {
  color: #c2c2c2;
  }
  
.infobox a:hover {
  color: #e2e2e2;
  }
  */
.listing-multi iframe {
  border:0;
  width: 98%;
  }
  
  
  
/***

MOBILE

***/
  
@media(orientation:portrait) {  
  
  body {
    overflow: auto;
    font-size: 0.925em;
    }
  .main {
    width: 85%;
    margin-top: 5%;
    margin-bottom: 5%;
    }
  }