/* ==========================================================================
   Grid mixins
   ========================================================================== */
/* 
   Define number of columns in the grid
   Common values would be 12, 16 or 24
   ========================================================================== */
/* 
   Works out the width of elements based on total number of columns and width
   number of columns being displayed. Removes 20px for margins.
   ========================================================================== */
/* 
   Add x amount of column padding before an element
   Example: @include prefix(1,12);
   ========================================================================== */
/* 
   Add x amount of column padding after an element
   Example: @include suffix(2,12);
   ========================================================================== */
/* 
   Remove left margin
   Example: @include first;
   ========================================================================== */
/* 
   Remove right margin
   Example: @include last;
   ========================================================================== */
/* 
   Push an element x amount of column(s) to the right
   Example: @include push(2,12);
   ========================================================================== */
/* 
   Pull an element x amount of column(s) to the left
   Example: @include pull(1,12);
   ========================================================================== */
body {
  font-size: 1.5em;
  letter-spacing: .01em;
  line-height: 1.4em; }
  body div.schrank {
    padding: 0;
    margin: 0; }
  body ul {
    padding: 0 0 0 1em;
    list-style-type: circle; }
  body div.title {
    position: fixed; }
    body div.title h1 {
      color: #3e4e50;
      font-family: 'Montserrat', sans-serif;
      font-style: normal;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: .8em;
      letter-spacing: .03em; }
    body div.title p {
      color: #3e4e50;
      font-family: 'Montserrat', sans-serif;
      font-style: normal;
      font-weight: 400;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: .7em;
      letter-spacing: .03em;
      padding: 0;
      margin: 0; }
  body div.nav {
    position: fixed;
    color: #3e4e50;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .6em; }
    body div.nav ul {
      list-style-type: none;
      padding: 0;
      margin: 0; }
  body div.nav {
    background-color: #1d2526;
    color: #f2f1ea;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1em; }
  body img.title-image {
    position: relative;
    top: -5em; }
  body .nowyouseeit {
    transition: opacity 2s;
    opacity: 1; }
  body .nowyoudont {
    transition: opacity 2s;
    opacity: 0; }
  body img.dots {
    left: -.8em; }
  body img.letters {
    top: 6.2em;
    left: -.8em; }
  body .chapter-break {
    color: #1d2526;
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 2em; }
  body .page {
    color: #1d2526;
    font-family: 'Cormorant', serif;
    font-style: normal; }
    body .page p.italic {
      color: #1d2526;
      font-family: 'Cormorant', serif;
      font-style: italic; }
    body .page p.small, body .page.small {
      color: #1d2526;
      font-family: 'Cormorant', serif;
      font-style: normal;
      font-size: .75em;
      line-height: 1.05em; }
    body .page.light, body .page p.light {
      color: #f2f1ea; }
  body .page.quotation {
    color: #f97070;
    font-family: 'Cormorant', serif;
    font-style: normal; }
  body div#main {
    background: transparent;
    -webkit-overflow-scrolling: touch;
    margin: 1em;
    padding: 1em 0 0 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden; }
    body div#main::-webkit-scrollbar {
      display: none; }
    body div#main div.page {
      flex: 0 0 auto;
      max-width: 80%;
      flex-grow: 1;
      flex-basis: 60%;
      position: relative;
      top: 2em;
      margin: 0 4em; }

a {
  color: #ffc95e;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }
