@charset "UTF-8";
/*doc
---
title: Basics
name: some
category: Base CSS
---

Some nice introduction

```html_example
  Just some text
```

*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  overflow-x: hidden;
  vertical-align: baseline; }
  @media screen and (min-width: 1200px) {
    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
      font-size: 103%; } }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

button, input[type="button"], input[type="reset"], input[type="submit"] {
  appearance: none;
  background-color: #d95043;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1.5em;
  text-decoration: none;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
    background-color: #ae4036;
    color: #fff; }
  button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.5; }
    button:disabled:hover, input[type="button"]:disabled:hover, input[type="reset"]:disabled:hover, input[type="submit"]:disabled:hover {
      background-color: #d95043; }

fieldset {
  background-color: #d95043;
  border: 1px solid #c4beb1;
  margin: 0 0 0.75em;
  padding: 1.5em; }

input,
label,
select {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2rem; }

label {
  font-weight: 600;
  margin-bottom: 0.375em; }
  label.required::after {
    content: "*"; }
  label abbr {
    display: none; }

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple=multiple] {
  background-color: #fff;
  border: 1px solid #c4beb1;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color 150ms ease;
  width: 100%; }
  input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
  select[multiple=multiple]:hover {
    border-color: #9d988e; }
  input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
  select[multiple=multiple]:focus {
    border-color: #d95043;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(213, 60, 46, 0.7);
    outline: none; }
  input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled,
  select[multiple=multiple]:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed; }
    input[type="color"]:disabled:hover, input[type="date"]:disabled:hover, input[type="datetime"]:disabled:hover, input[type="datetime-local"]:disabled:hover, input[type="email"]:disabled:hover, input[type="month"]:disabled:hover, input[type="number"]:disabled:hover, input[type="password"]:disabled:hover, input[type="search"]:disabled:hover, input[type="tel"]:disabled:hover, input[type="text"]:disabled:hover, input[type="time"]:disabled:hover, input[type="url"]:disabled:hover, input[type="week"]:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover,
    select[multiple=multiple]:disabled:hover {
      border: 1px solid #c4beb1; }

textarea {
  resize: vertical; }

input[type="search"] {
  appearance: none; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.375em; }
  input[type="checkbox"] + label,
  input[type="radio"] + label {
    display: inline-block; }

input[type="file"] {
  margin-bottom: 0.75em;
  width: 100%; }

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto; }

ul {
  list-style-type: disc;
  margin-bottom: 0.75em;
  padding-left: 1.5em; }

ol {
  list-style-type: decimal;
  margin-bottom: 0.75em;
  padding-left: 1.5em; }

li {
  overflow-x: visible; }

dl {
  margin-bottom: 0.75em; }
  dl dt {
    font-weight: bold;
    margin-top: 0.75em; }
  dl dd {
    margin: 0; }

table {
  border-collapse: collapse;
  font-feature-settings: "kern", "liga", "tnum";
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%; }

th {
  border-bottom: 1px solid #938f85;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left; }

td {
  border-bottom: 1px solid #c4beb1;
  padding: 0.75em 0; }

tr,
td,
th {
  vertical-align: middle; }

/*doc
---
title: Body
name: body
category: Base CSS
---

The default body background and text colors and font-sizes

```html_example
  Just some text
```

*/
body {
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-feature-settings: "kern", "liga", "pnum";
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5; }

/*doc
---
title: Headings
name: headings
category: Base CSS
---

The six headings

```html_example
  <h1>Heading 1</h1>
  <h2>Heading 2</h2>
  <h3>Heading 3</h3>
  <h4>Heading 4</h4>
  <h5>Heading 5</h5>
  <h6>Heading 6</h6>
```

*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #d95043;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0;
  overflow: hidden; }

h1 {
  font-size: 3.2rem; }

h2 {
  font-size: 2.8rem; }

h3 {
  font-size: 2.4rem; }

h4 {
  font-size: 2rem; }

h5 {
  font-size: 1.6rem; }

h6 {
  font-size: 1.2rem; }

p {
  margin: 0 0 0.75em; }

/*doc
---
title: Anchor
name: anchor
category: Base CSS
---

The default anchor

```html_example
  <a href="#">A default anchor</a>
```

*/
a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-color: transparent;
  border-style: dotted;
  border-width: 0 0 1px 0;
  color: #d95043;
  text-decoration: none; }
  a:active, a:focus, a:hover {
    border-color: #204359;
    color: #a33c32; }
  a:visited {
    border: none; }

/*doc
---
title: Miscellaneous
name: miscellaneous
category: Base CSS
---

The small, strong and hr elements

```html_example
  <hr />
  Some <small>small</small> text<br/>
  Some <strong>strong</strong> text
```

*/
small {
  font-size: .8em; }

hr {
  border-bottom: 1px solid #c4beb1;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0; }

strong {
  font-weight: 500; }

img,
picture {
  margin: 0;
  max-width: 100%; }

code {
  font-family: "Roboto mono", monospace; }
  code.highlighter-rouge {
    background-color: #bfb19f;
    font-size: .8em;
    padding: 0 .2em; }

/*doc
---
title: Blockquote
name: blockquote
category: Base CSS
---

The blockquote

```html_example
  <blockquote>
    lorem Ipsum
  </blockquote>
```

*/
blockquote {
  border-color: #d5a45b;
  border-style: solid;
  border-width: 1px 1px 1px 5px;
  font-weight: 300;
  font-size: .9em;
  font-style: italic;
  padding: .6em 0 0 20px; }

[data-jl-animate] {
  transition: all .6s ease;
  opacity: 0; }

[data-jl-animate=slideup] {
  transform: translateY(50%); }

[data-jl-animate=slideleft] {
  transform: translateX(-100%); }

[data-jl-animate=slideright] {
  transform: translateX(100%); }

[data-jl-animate].animated {
  opacity: 1; }

[data-jl-animate=slideup].animated {
  transform: translateY(0); }

[data-jl-animate=slideleft].animated, [data-jl-animate=slideright].animated {
  transform: translateX(0); }

.header {
  background-color: #d95043;
  color: #fff;
  height: 4rem;
  overflow: hidden;
  position: relative; }
  .header .site-head {
    height: 4rem; }
    .header .site-head .head {
      stroke-width: 1rem; }
  .header .site-title {
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    line-height: 4rem;
    vertical-align: top; }
    .header .site-title:hover {
      border-color: #fff; }

.the-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.page-header {
  float: left;
  width: 100%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .page-header {
      padding: 2rem; } }
  .page-header h1 {
    color: #204359; }

a.more {
  cursor: pointer; }
  a.more:after {
    content: '\21dd'; }

.footer {
  background-color: #d95043;
  color: #fff; }
  .footer a {
    color: #c4beb1; }
    .footer a:hover {
      color: #204359; }
  .footer > section {
    float: left;
    width: 100%;
    padding: 20px;
    float: none;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; }
    @media screen and (min-width: 800px) {
      .footer > section {
        padding: 2rem; } }
  .footer ul {
    list-style: none; }
  .footer li {
    -webkit-transition: background 0.35s ease;
    -moz-transition: background 0.35s ease;
    transition: background 0.35s ease;
    display: inline-block;
    padding: .2em .4em; }
    .footer li a {
      color: #fff; }
    .footer li:hover {
      background: #fff; }
      .footer li:hover a {
        color: #204359; }

.site-start {
  float: left;
  width: 100%;
  background-color: #d95043;
  color: #c4beb1;
  height: 100vh;
  overflow: hidden;
  position: relative; }
  .site-start h1 {
    -webkit-transition: all 0.35s ease, -webkit-transform 1s ease;
    -moz-transition: all 0.35s ease, -moz-transform 1s ease;
    transition: all 0.35s ease, transform 1s ease;
    color: #fff;
    display: inline-block;
    font-size: 10vw;
    text-align: center;
    width: 100vw; }
    .site-start h1.show {
      -webkit-transform: scale(1) translateY(0);
      -moz-transform: scale(1) translateY(0);
      -ms-transform: scale(1) translateY(0);
      -o-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0); }
  .site-start article {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    position: absolute;
    top: 50%;
    width: 100%; }
    .site-start article .site-head {
      -webkit-transition: opacity 0.35s ease;
      -moz-transition: opacity 0.35s ease;
      transition: opacity 0.35s ease;
      display: none;
      opacity: 0;
      height: 4rem; }
    .site-start article.fixed {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
      overflow: hidden;
      position: fixed;
      top: 0;
      z-index: 3; }
    .site-start article.shrink {
      height: 4rem; }
      .site-start article.shrink .site-head {
        display: inline; }
        .site-start article.shrink .site-head .head path {
          stroke-width: 15; }
      .site-start article.shrink h1 {
        display: inline-block;
        font-size: 2rem;
        line-height: 4rem;
        vertical-align: top;
        width: auto; }
      .site-start article.shrink section {
        -webkit-transition: all 0.35s ease;
        -moz-transition: all 0.35s ease;
        transition: all 0.35s ease;
        height: 0;
        opacity: 0; }
    .site-start article.topbar {
      background-color: #d95043; }
      .site-start article.topbar .site-head {
        opacity: 1; }
  .site-start section {
    -webkit-transition: all 0.35s ease, opacity 0.35s ease 0.5s;
    -moz-transition: all 0.35s ease, opacity 0.35s ease 0.5s;
    transition: all 0.35s ease, opacity 0.35s ease 0.5s;
    font-size: 6vw;
    opacity: 0;
    overflow: hidden;
    text-align: center; }
    .site-start section span {
      font-style: italic; }
    .site-start section.show {
      opacity: 1; }

.site-head {
  height: 100vh;
  opacity: .5; }

.site-blog {
  float: left;
  width: 100%;
  padding: 20px;
  background-color: #fff; }
  @media screen and (min-width: 800px) {
    .site-blog {
      padding: 2rem; } }
  @media screen and (min-width: 600px) {
    .site-blog {
      float: left;
      width: 50%;
      padding: 20px;
      border-right: 1px solid #d95043; } }
  @media screen and (min-width: 600px) and (min-width: 800px) {
    .site-blog {
      padding: 2rem; } }

  .site-blog ul {
    list-style: none;
    padding-left: 0; }

.site-projects {
  float: left;
  width: 100%;
  padding: 20px;
  background-color: #fff; }
  @media screen and (min-width: 800px) {
    .site-projects {
      padding: 2rem; } }
  @media screen and (min-width: 600px) {
    .site-projects {
      float: left;
      width: 50%;
      padding: 20px; } }
  @media screen and (min-width: 600px) and (min-width: 800px) {
    .site-projects {
      padding: 2rem; } }

.page-image {
  float: left;
  width: 100%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .page-image {
      padding: 2rem; } }
  @media screen and (min-width: 500px) {
    .page-image {
      float: left;
      width: 35%;
      padding: 20px; } }
  @media screen and (min-width: 500px) and (min-width: 800px) {
    .page-image {
      padding: 2rem; } }

  @media screen and (min-width: 800px) {
    .page-image {
      float: left;
      width: 30%;
      padding: 20px; } }
  @media screen and (min-width: 800px) and (min-width: 800px) {
    .page-image {
      padding: 2rem; } }

  @media screen and (min-width: 1100px) {
    .page-image {
      float: left;
      width: 25%;
      padding: 20px; } }
  @media screen and (min-width: 1100px) and (min-width: 800px) {
    .page-image {
      padding: 2rem; } }

  .page-image .site-head {
    height: auto;
    opacity: 1;
    width: auto; }
    @media screen and (max-width: 500px) {
      .page-image .site-head {
        max-height: 200px;
        max-width: 200px; } }
    @media screen and (min-width: 500px) {
      .page-image .site-head {
        width: 100%; } }
  .page-image .nose path, .page-image .head path {
    stroke: #d5a45b;
    fill: #d5a45b; }
  .page-image .body path {
    stroke: #c98d34;
    fill: #c98d34; }

.page-content {
  float: left;
  width: 100%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .page-content {
      padding: 2rem; } }
  @media screen and (min-width: 500px) {
    .page-content {
      float: left;
      width: 65%;
      padding: 20px; } }
  @media screen and (min-width: 500px) and (min-width: 800px) {
    .page-content {
      padding: 2rem; } }

  @media screen and (min-width: 800px) {
    .page-content {
      float: left;
      width: 70%;
      padding: 20px; } }
  @media screen and (min-width: 800px) and (min-width: 800px) {
    .page-content {
      padding: 2rem; } }

  @media screen and (min-width: 1100px) {
    .page-content {
      float: left;
      width: 75%;
      padding: 20px; } }
  @media screen and (min-width: 1100px) and (min-width: 800px) {
    .page-content {
      padding: 2rem; } }

.post {
  float: left;
  width: 100%;
  padding: 20px;
  border-right: 1px solid #c4beb1; }
  @media screen and (min-width: 800px) {
    .post {
      padding: 2rem; } }
  @media screen and (min-width: 800px) {
    .post {
      float: left;
      width: 65%;
      padding: 20px; } }
  @media screen and (min-width: 800px) and (min-width: 800px) {
    .post {
      padding: 2rem; } }

  @media screen and (min-width: 1100px) {
    .post {
      float: left;
      width: 70%;
      padding: 20px; } }
  @media screen and (min-width: 1100px) and (min-width: 800px) {
    .post {
      padding: 2rem; } }

.post-aside {
  float: left;
  width: 100%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .post-aside {
      padding: 2rem; } }
  @media screen and (min-width: 800px) {
    .post-aside {
      float: left;
      width: 35%;
      padding: 20px; } }
  @media screen and (min-width: 800px) and (min-width: 800px) {
    .post-aside {
      padding: 2rem; } }

  @media screen and (min-width: 1100px) {
    .post-aside {
      float: left;
      width: 30%;
      padding: 20px; } }
  @media screen and (min-width: 1100px) and (min-width: 800px) {
    .post-aside {
      padding: 2rem; } }

.post-content p:first-of-type {
  font-weight: 500; }

.posts-header {
  float: left;
  width: 100%;
  padding: 20px;
  padding-bottom: 0; }
  @media screen and (min-width: 800px) {
    .posts-header {
      padding: 2rem; } }
  @media screen and (min-width: 800px) {
    .posts-header {
      padding-bottom: 0; } }
  .posts-header.category h1 {
    color: #d5a45b; }
    .posts-header.category h1 span {
      color: #d95043; }

.the-posts {
  float: left;
  width: 100%;
  padding: 20px;
  overflow: hidden; }
  @media screen and (min-width: 800px) {
    .the-posts {
      padding: 2rem; } }
  .the-posts .posts-item {
    border-top: 1px dotted #c4beb1; }
    .the-posts .posts-item small {
      color: #333;
      display: none;
      float: right;
      font-size: .5em; }
      @media screen and (min-width: 800px) {
        .the-posts .posts-item small {
          display: inline; } }
    .the-posts .posts-item .more:after {
      content: '\21dd';
      margin-left: 5px; }

.project-header {
  float: left;
  width: 100%;
  padding: 20px;
  padding-bottom: 0; }
  @media screen and (min-width: 800px) {
    .project-header {
      padding: 2rem; } }
  .project-header small {
    float: right;
    font-size: .4em; }
    .project-header small a:before {
      content: '\21dc'; }
  @media screen and (min-width: 800px) {
    .project-header {
      padding-bottom: 0; } }

.project-image {
  float: left;
  width: 20%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .project-image {
      padding: 2rem; } }
  .project-image img {
    border: 2px solid #c4beb1;
    border-radius: 50%;
    width: 100%; }

.project-content {
  float: left;
  width: 80%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .project-content {
      padding: 2rem; } }
  @media screen and (min-width: 1000px) {
    .project-content {
      float: left;
      width: 50%;
      padding: 20px; } }
  @media screen and (min-width: 1000px) and (min-width: 800px) {
    .project-content {
      padding: 2rem; } }

.project-info {
  float: left;
  width: 100%; }

.projects-container > header {
  float: left;
  width: 100%;
  padding: 20px;
  padding-bottom: 0; }
  @media screen and (min-width: 800px) {
    .projects-container > header {
      padding: 2rem; } }
  @media screen and (min-width: 800px) {
    .projects-container > header {
      padding-bottom: 0; } }
.projects-container .the-projects {
  float: left;
  width: 100%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .projects-container .the-projects {
      padding: 2rem; } }
.projects-container article {
  float: left;
  width: 100%;
  border-top: 1px dotted #c4beb1;
  color: #333;
  height: 200px;
  margin-bottom: 30px;
  overflow: hidden; }
  .projects-container article picture {
    -webkit-transition: -webkit-transform 0.2s ease;
    -moz-transition: -moz-transform 0.2s ease;
    transition: transform 0.2s ease;
    float: left;
    width: 128px; }
  .projects-container article section > section {
    float: left;
    padding: 0 20px;
    width: calc(100% - 128px); }
@media screen and (min-width: 900px) {
  .projects-container article {
    float: left;
    width: 50%; } }

.contact-social,
.contact-repos {
  float: left;
  width: 100%;
  padding: 20px; }
  @media screen and (min-width: 800px) {
    .contact-social,
    .contact-repos {
      padding: 2rem; } }
  @media screen and (min-width: 800px) {
    .contact-social,
    .contact-repos {
      float: left;
      width: 50%;
      padding: 20px; } }
  @media screen and (min-width: 800px) and (min-width: 800px) {
    .contact-social,
    .contact-repos {
      padding: 2rem; } }

.contact-card {
  margin-bottom: 30px;
  position: relative; }
  .contact-card svg {
    position: relative;
    left: 0;
    height: auto;
    width: 17%;
    z-index: -1; }
    .contact-card svg path {
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease;
      stroke: #204359; }
  .contact-card section {
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 80%; }
  .contact-card h5 {
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    transition: color 0.3s ease;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
    top: 50%; }
  .contact-card:hover path {
    fill: #c4beb1;
    stroke: #d95043; }
  .contact-card:hover h5 {
    color: #204359; }

.contact-mail {
  float: left;
  width: 100%;
  padding: 20px;
  border-top: 1px dotted #bfb19f;
  padding-top: 0;
  text-align: center; }
  @media screen and (min-width: 800px) {
    .contact-mail {
      padding: 2rem; } }
  .contact-mail span {
    font-size: .8em;
    font-style: italic; }

/*doc
---
title: Aside
name: aside
category: Elements
---

Sidebar component

```html_example
  <aside class="post-aside">
    <article>
    	<h3>Aside</h3>
    	<ul>
			<li data-jl-animate="fadein" class="init animated">
			  28 Feb • <a href="/2016/02/modular-gulp-my-way.html">Modular Gulp, my way</a>
			</li>

			<li data-jl-animate="fadein" class="init animated">
			  21 Feb • <a href="/2016/02/beat-the-sound-module-two.html">Beat the sound module (part 2)</a>
			</li>
    	</ul>
    </article>
  </aside>
```

*/
.post-aside article {
  border-top: 1px dotted #c4beb1;
  padding: 15px 0; }
  .post-aside article:first-of-type {
    border: none;
    padding-top: 0; }
.post-aside ul {
  list-style: none;
  padding-left: 0; }
.post-aside li a {
  color: #333; }
  .post-aside li a:hover {
    color: #d95043; }
.post-aside .project {
  display: inline-block; }
  .post-aside .project:after {
    color: #333;
    content: " | "; }
.post-aside .more {
  display: inline-block;
  padding-top: 10px;
  vertical-align: top; }
  .post-aside .more:after {
    content: '\21dd';
    margin-left: 5px; }

.site-menu {
  display: block;
  float: right;
  overflow: visible;
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem; }
  .site-start + .site-menu {
    position: fixed;
    z-index: 4; }
  .site-menu .space {
    cursor: pointer;
    height: 4rem;
    width: 4rem; }
  .site-menu .hamburger {
    background: #fff;
    display: block;
    height: .4rem;
    margin: 1.8rem 1rem;
    overflow: visible;
    position: relative;
    width: 2rem; }
    .site-menu .hamburger:before, .site-menu .hamburger:after {
      background: #fff;
      content: '';
      display: block;
      height: .4rem;
      position: absolute;
      width: 2rem; }
    .site-menu .hamburger:before {
      top: -.8rem; }
    .site-menu .hamburger:after {
      bottom: -.8rem; }
  .site-menu ul {
    -webkit-transition: width 0.5s ease 0.1s;
    -moz-transition: width 0.5s ease 0.1s;
    transition: width 0.5s ease 0.1s;
    background: #d95043;
    height: calc(100vh - 4rem);
    list-style: none;
    padding-left: 0;
    position: absolute;
    right: 0;
    width: 0vw;
    z-index: 10; }
  .site-menu li {
    text-align: center; }
  .site-menu a {
    color: #fff;
    font-size: 3rem; }
    .site-menu a:hover {
      border-color: #c4beb1;
      color: #c4beb1; }
  .site-menu.show ul {
    position: absolute;
    width: 100vw; }

.social-follow {
  display: inline-block;
  list-style: none; }
  .social-follow li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle; }
  .social-follow a {
    display: block;
    height: 48px;
    width: 48px; }
    .social-follow a:hover, .social-follow a:active {
      border: none; }
      .social-follow a:hover path, .social-follow a:active path {
        fill: #c4beb1;
        stroke: #d95043; }
  .social-follow svg {
    height: 48px;
    width: 48px; }
    .social-follow svg path {
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease;
      stroke: #204359;
      stroke-width: 13; }

.social-share {
  display: inline-block;
  float: right;
  list-style: none; }
  .social-share li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle; }
  .social-share a {
    display: block;
    height: 32px;
    width: 32px; }
    .social-share a:hover, .social-share a:active {
      border: none; }
      .social-share a:hover path, .social-share a:active path {
        fill: #c4beb1;
        stroke: #d95043; }
  .social-share svg {
    height: 32px;
    width: 32px; }
    .social-share svg path {
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease;
      stroke: #204359;
      stroke-width: 15; }

.categories {
  display: inline;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0; }
  .categories li {
    display: inline; }
    .categories li a {
      color: #204359; }
    .categories li:after {
      content: '•';
      color: #333; }
    .categories li:last-of-type:after {
      content: ''; }

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #bfb19f;
  font-family: "Roboto mono", monospace;
  font-size: .7em;
  padding: 20px; }
  .highlighter-rouge .highlight {
    background: #eef; }
  .highlight .c {
    color: #998;
    font-style: italic; }
  .highlight .err {
    color: transparent;
    background: transparent; }
  .highlight .k {
    font-weight: bold; }
  .highlight .o {
    font-weight: bold; }
  .highlight .cm {
    color: #998;
    font-style: italic; }
  .highlight .cp {
    color: #999;
    font-weight: bold; }
  .highlight .c1 {
    color: #998;
    font-style: italic; }
  .highlight .cs {
    color: #999;
    font-weight: bold;
    font-style: italic; }
  .highlight .gd {
    color: #000;
    background-color: #fdd; }
  .highlight .gd .x {
    color: #000;
    background-color: #faa; }
  .highlight .ge {
    font-style: italic; }
  .highlight .gr {
    color: #a00; }
  .highlight .gh {
    color: #999; }
  .highlight .gi {
    color: #000;
    background-color: #dfd; }
  .highlight .gi .x {
    color: #000;
    background-color: #afa; }
  .highlight .go {
    color: #888; }
  .highlight .gp {
    color: #555; }
  .highlight .gs {
    font-weight: bold; }
  .highlight .gu {
    color: #aaa; }
  .highlight .gt {
    color: #a00; }
  .highlight .kc {
    font-weight: bold; }
  .highlight .kd {
    font-weight: bold; }
  .highlight .kp {
    font-weight: bold; }
  .highlight .kr {
    font-weight: bold; }
  .highlight .kt {
    color: #458;
    font-weight: bold; }
  .highlight .m {
    color: #099; }
  .highlight .s {
    color: #d14; }
  .highlight .na {
    color: #008080; }
  .highlight .nb {
    color: #0086B3; }
  .highlight .nc {
    color: #458;
    font-weight: bold; }
  .highlight .no {
    color: #008080; }
  .highlight .ni {
    color: #800080; }
  .highlight .ne {
    color: #900;
    font-weight: bold; }
  .highlight .nf {
    color: #900;
    font-weight: bold; }
  .highlight .nn {
    color: #555; }
  .highlight .nt {
    color: #000080; }
  .highlight .nv {
    color: #008080; }
  .highlight .ow {
    font-weight: bold; }
  .highlight .w {
    color: #bbb; }
  .highlight .mf {
    color: #099; }
  .highlight .mh {
    color: #099; }
  .highlight .mi {
    color: #099; }
  .highlight .mo {
    color: #099; }
  .highlight .sb {
    color: #d14; }
  .highlight .sc {
    color: #d14; }
  .highlight .sd {
    color: #d14; }
  .highlight .s2 {
    color: #d14; }
  .highlight .se {
    color: #d14; }
  .highlight .sh {
    color: #d14; }
  .highlight .si {
    color: #d14; }
  .highlight .sx {
    color: #d14; }
  .highlight .sr {
    color: #009926; }
  .highlight .s1 {
    color: #d14; }
  .highlight .ss {
    color: #990073; }
  .highlight .bp {
    color: #999; }
  .highlight .vc {
    color: #008080; }
  .highlight .vg {
    color: #008080; }
  .highlight .vi {
    color: #008080; }
  .highlight .il {
    color: #099; }
