body {
    background-color: white;
    font-family: 'Roboto Slab';
    font-size: 1.2em;
    color: #222;
    margin: auto;
    width: 800px;
}

@media (max-width: 800px) {

  body {
    width: initial;
    padding: 20px;
  }
}

h1 {
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.2);
}

h2, h3 {
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

h2 {
  line-height: 1.75em;
}

h3 {
  line-height: 1em;
}

main p {
  line-height: 1.5em;
  text-align: justify;
}

a, a:visited, a:active {
  color: #337ab7;
}

hr {
  border: none;
  border-top: 3px double #ddd;
  margin: 0 20%;
}

header, footer {
  text-align: center;
}

blockquote {
    background: #ededed;
    border: 0;
    padding: 1em;
    margin: 20px 0;
    border: 0;
    border-radius: 0;
}

code {
    background-color: #eee;
    color: black;
    font-family: 'Roboto Mono', monospace;
}

pre {
    margin: 20px 0;
    background-color: #2a2a2a;
    border: 0;
    border-radius: 0;
    padding: 15px;
    overflow-x: auto;
}

  pre code {
      background-color: #2a2a2a;
      font-family: 'Roboto Mono';
      color: white;
  }
