/* Presentational style rules only
 * Not required
 */

html, body, .container {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body { 
  font: 12px Lato, sans-serif;
  color: #ffffff;
}

h1 {
  color: #efecec;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 50px;
  font-weight: 300;
  margin-top: 20px;
}

h2 {	
  font-family: Shaolin Style Regular;
  color: #efecec;
  font-size: 80px;
  margin: 50px auto;
  line-height: 23px;
  text-transform: uppercase;
}

#and-lato {	
  font-family: Lato;
  font-weight: normal;
  font-size: 56px;
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}

blockquote {
  display: block;
  max-width: 480px;
  margin: 15px auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.3);  
  color: #e1e1e1;
  font-family: "Kotta One", serif;
  font-size: 18px;
  line-height: 28px;
}

blockquote cite {
  display: block;
  font: 18px/23px "Cantarell", sans-serif;
  font-size: 13px;
  margin-top: 16px;
  color: #cccccc;
  text-transform: uppercase;
}

/* Layout */

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 30px;
  z-index: 9999;
  position: fixed;
}

  .inner {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }

.navbar a {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 9px;
  line-height: 13px;
  border-radius: 3px;
  padding: 2px 10px;
  text-decoration: none;
  margin-top: 6px;
}

.container {
  display: table;
  padding-top: 50px;
  width: 100%;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* Special */
.sub-title {
  margin: 50px auto;
  font-size: 18px;
  line-height: 23px;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 4px 8px;
  color: #cafaea;
  border: 1px solid #cafaea;
  border-radius: 3px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

#more-content {
  display: none;
}

.links {
  font-weight: 400;
  color: #000;
  margin: 0 5px;
  line-height: 1.6;
  padding-bottom: 2rem;
  text-align: center;
}

.links a {
  color: #000;
  text-decoration: none;
}

.novel-link {
  text-align: center;
  margin: 0 0 23px;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.novel-link a {
  color: #000;
  text-decoration: none;
}

.novel-link a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media only screen and (max-width: 340px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  
  #more-content {
    float: left;
    margin-right: 10px;
    
  }
  
  body h1 {
    font-size: 14px;
    line-height: 23px;
  } 
  
  body h2 {
    font-size: 55px;
    line-height: 23px;
    margin: 20px auto;
  } 
  
   body #and-lato {
    font-size: 36px;
  } 
  
 .content, blockquote {  
    display: inline;
    margin: 0 auto;
    padding-top: 80px;
    vertical-align: baseline;
  }

  blockquote {
    width: 150px;
    margin: 15px auto;
    font-size: 14px;
    line-height: 21px;
    background-color: transparent;
  }

  blockquote cite {
    font-size: 11px;
    line-height: 19px;
  }

  .sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  .button, p {
    max-width: 150px;
    margin: 0 auto;
    font-size: 10px;
    line-height: 13px;
  }

  html, body, .container {
    height: auto;
  }
}