.fancy-font,
h1,
h2,
h3,
h4,
h5,
h6,
nav {
  font-family: 'Roboto Slab';
}
.normal-font {
  font-family: 'Source Sans Pro', 'Lucida Grande', sans-serif;
}
.code-font,
code {
  font-family: 'Droid Sans Mono', Consolas, "Liberation Mono", Menlo, Monaco, Courier, monospace;
}
.centerer {
  display: block;
  text-align: center;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  font-family: Georgia;
  line-height: 1.5;
  color: #666;
  font-size: 1.1rem;
  transition: all 0.3s;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding-top: 50px;
  text-align: center;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}
h3 {
  font-size: 1.5rem;
}
a {
  color: #222;
}
p a,
ol a,
ul a {
  color: #f67070;
}
.highlight {
  margin-bottom: 16px;
}
code {
  font-size: 1rem;
}
pre {
  margin: 0;
  padding: 10px;
  word-break: normal;
  word-wrap: normal;
  overflow: auto;
  line-height: 1.45;
  border-radius: 3px;
  background-color: rgba(0,0,0,0.05);
}
pre pre {
  background: none;
}
p code {
  background: #f4f4f4;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 0.9rem;
}
nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: #f67070;
  color: #fff;
  font-weight: 300;
  padding-top: 40px;
  overflow-y: auto;
}
nav a {
  color: #fff;
  display: block;
  padding: 8px 30px;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.2s;
}
nav a:hover,
nav a:active,
nav a.active {
  transition: all 0s;
  opacity: 1;
  background: #d65252;
}
@media screen and (max-width: 600px) {
  nav {
    display: none;
  }
}
#github-repo-link {
  z-index: 10;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  opacity: 0.4;
  transition: all 0.3s;
}
#github-repo-link img {
  width: 100%;
}
#github-repo-link:hover {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  #github-repo-link {
    left: 50%;
    transform: translateX(-50%);
  }
}
#content {
  width: 70%;
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 600px) {
  #content {
    width: 100%;
    padding: 30px;
  }
}
#column {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
#logo {
  display: inline-block;
  max-width: 300px;
}
#logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 600px) {
  #logo {
    margin-top: 40px;
  }
}
table.routes {
  width: 100%;
  border-collapse: collapse;
}
table.routes tr {
  border-top: 1px solid #ccc;
}
table.routes tr:first-child {
  border-top: none;
}
table.routes th,
table.routes td {
  text-align: left;
  line-height: 1.8;
}
table.routes th:first-child:after,
table.routes td:first-child:after {
  display: block;
  float: right;
  margin-right: 20px;
  content: "→";
  text-align: right;
  opacity: 0.5;
}
