/* ==========================================================================
   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 auto;
    width: 45%; }
  body ul {
    list-style-type: circle; }
  body div.title {
    position: fixed; }
    body div.title h1 {
      color: #1d2526;
      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: #1d2526;
      font-family: 'Montserrat', sans-serif;
      font-style: normal;
      font-weight: 400;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin: 1em 0;
      font-size: .7em;
      letter-spacing: .03em; }
  body div.nav {
    position: fixed;
    color: #1d2526;
    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; }
  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 div#main {
    margin: 5em 0 0 0; }
    body div#main p {
      margin: 1em 0 0 0; }
    body div#main a {
      color: #E01B0D; }
      body div#main a:visited {
        color: #cf0a00; }
  body p img {
    width: 100%; }
  body .titlepage p:first-child {
    color: #E01B0D; }
  body img.title-image {
    position: relative; }
  body .chapter-break {
    color: #1d2526;
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 2em;
    margin: 2em 0; }
  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; }

a {
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }
