@import url(https://fonts.googleapis.com/css?family=Cutive+Mono);
/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 14px/1.5 "Helvetica Neue";
  color: #111;
  background-color: #fff;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure, table {
  margin-bottom: 1rem;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 0.875rem;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 2rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  text-transform: lowercase;
  font-variant: small-caps;
}
h1::first-letter, h2::first-letter, h3::first-letter, h4::first-letter, h5::first-letter, h6::first-letter {
  text-transform: uppercase;
}

/**
 * Links
 */
a {
  color: #2a7ae2;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  padding-left: 1rem;
  border-left: 2px solid #e8e8e8;
  font-style: italic;
  font-size: 0.875rem;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  background-color: #fcfcfc;
}

code {
  padding: 1px 5px;
  font-family: "Courier New", Consolas, monopace, FangSong, STFangsong;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
  border-left: 2px solid #e8e8e8;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
  tab-size: 4;
}

/**
 * Table
 */
table {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

th,
td {
  padding: 0.5rem;
  line-height: inherit;
}

th {
  text-align: left;
  vertical-align: bottom;
  border-bottom: 2px solid #e8e8e8;
}

td {
  vertical-align: top;
  border-bottom: 1px solid #e8e8e8;
}

/**
 * Horizontal rule
 */
hr {
  width: 30%;
  border: none;
  border-top: 1px solid rgb(176.6652892562, 206.0867768595, 244.3347107438);
  margin: 2rem auto;
}

/**
 * Clearfix
 */
/**
 * Site header
 */
.site-header {
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
  padding: 1rem 0;
}

.site-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0px;
  color: #828282;
}
.site-title, .site-title:hover {
  text-decoration: none;
}

/* Keep original light navbar tone regardless of external theme defaults. */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand,
.navbar-default .navbar-nav > li > a {
  color: #777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
}

.navbar-default .navbar-toggle {
  border-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/**
 * Page content
 */
.page-content {
  position: relative;
  max-width: 60rem;
  padding: 2rem 1.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

/**
 * Pages
 */
.home section + section {
  margin-top: 2rem;
}

.smallcap {
  text-transform: lowercase;
  font-variant: small-caps;
  color: #828282;
}
.smallcap::first-letter {
  text-transform: uppercase;
}

.post-list > li {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 600px) {
  .post-list > li time {
    display: block;
    font-size: 0.875rem;
  }
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 2rem;
}

.post-title {
  font-size: 3rem;
  letter-spacing: -1px;
  line-height: 1;
}

.post-meta {
  font-size: 0.875rem;
  color: #828282;
}

.post-content {
  margin-bottom: 2rem;
}
.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6 {
  margin-top: 2rem;
}
.post-content h1 {
  font-size: 2.5rem;
}
.post-content h2 {
  font-size: 2rem;
}
.post-content h3 {
  font-size: 1.5rem;
}
.post-content h4 {
  font-size: 1.25rem;
}
.post-content h5,
.post-content h6 {
  font-size: 1rem;
}

/* Solarized Light

For use with Jekyll and Pygments

http://ethanschoonover.com/solarized

SOLARIZED HEX      ROLE
--------- -------- ------------------------------------------
base01    #586e75  body text / default code / primary content
base1     #93a1a1  comments / secondary content
base3     #fdf6e3  background
orange    #cb4b16  constants
red       #dc322f  regex, special keywords
blue      #268bd2  reserved keywords
cyan      #2aa198  strings, numbers
green     #859900  operators, other keywords
*/
.highlight {
  background-color: #fcfcfc;
  color: #586e75;
}
.highlight .c {
  color: #93a1a1;
}
.highlight { /* Comment */ }
.highlight .err {
  color: #586e75;
}
.highlight { /* Error */ }
.highlight .g {
  color: #586e75;
}
.highlight { /* Generic */ }
.highlight .k {
  color: #859900;
}
.highlight { /* Keyword */ }
.highlight .l {
  color: #586e75;
}
.highlight { /* Literal */ }
.highlight .n {
  color: #586e75;
}
.highlight { /* Name */ }
.highlight .o {
  color: #859900;
}
.highlight { /* Operator */ }
.highlight .x {
  color: #cb4b16;
}
.highlight { /* Other */ }
.highlight .p {
  color: #586e75;
}
.highlight { /* Punctuation */ }
.highlight .cm {
  color: #93a1a1;
}
.highlight { /* Comment.Multiline */ }
.highlight .cp {
  color: #859900;
}
.highlight { /* Comment.Preproc */ }
.highlight .c1 {
  color: #93a1a1;
}
.highlight { /* Comment.Single */ }
.highlight .cs {
  color: #859900;
}
.highlight { /* Comment.Special */ }
.highlight .gd {
  color: #2aa198;
}
.highlight { /* Generic.Deleted */ }
.highlight .ge {
  color: #586e75;
  font-style: italic;
}
.highlight { /* Generic.Emph */ }
.highlight .gr {
  color: #dc322f;
}
.highlight { /* Generic.Error */ }
.highlight .gh {
  color: #cb4b16;
}
.highlight { /* Generic.Heading */ }
.highlight .gi {
  color: #859900;
}
.highlight { /* Generic.Inserted */ }
.highlight .go {
  color: #586e75;
}
.highlight { /* Generic.Output */ }
.highlight .gp {
  color: #586e75;
}
.highlight { /* Generic.Prompt */ }
.highlight .gs {
  color: #586e75;
  font-weight: bold;
}
.highlight { /* Generic.Strong */ }
.highlight .gu {
  color: #cb4b16;
}
.highlight { /* Generic.Subheading */ }
.highlight .gt {
  color: #586e75;
}
.highlight { /* Generic.Traceback */ }
.highlight .kc {
  color: #cb4b16;
}
.highlight { /* Keyword.Constant */ }
.highlight .kd {
  color: #268bd2;
}
.highlight { /* Keyword.Declaration */ }
.highlight .kn {
  color: #859900;
}
.highlight { /* Keyword.Namespace */ }
.highlight .kp {
  color: #859900;
}
.highlight { /* Keyword.Pseudo */ }
.highlight .kr {
  color: #268bd2;
}
.highlight { /* Keyword.Reserved */ }
.highlight .kt {
  color: #dc322f;
}
.highlight { /* Keyword.Type */ }
.highlight .ld {
  color: #586e75;
}
.highlight { /* Literal.Date */ }
.highlight .m {
  color: #2aa198;
}
.highlight { /* Literal.Number */ }
.highlight .s {
  color: #2aa198;
}
.highlight { /* Literal.String */ }
.highlight .na {
  color: #586e75;
}
.highlight { /* Name.Attribute */ }
.highlight .nb {
  color: #B58900;
}
.highlight { /* Name.Builtin */ }
.highlight .nc {
  color: #268bd2;
}
.highlight { /* Name.Class */ }
.highlight .no {
  color: #cb4b16;
}
.highlight { /* Name.Constant */ }
.highlight .nd {
  color: #268bd2;
}
.highlight { /* Name.Decorator */ }
.highlight .ni {
  color: #cb4b16;
}
.highlight { /* Name.Entity */ }
.highlight .ne {
  color: #cb4b16;
}
.highlight { /* Name.Exception */ }
.highlight .nf {
  color: #268bd2;
}
.highlight { /* Name.Function */ }
.highlight .nl {
  color: #586e75;
}
.highlight { /* Name.Label */ }
.highlight .nn {
  color: #586e75;
}
.highlight { /* Name.Namespace */ }
.highlight .nx {
  color: #586e75;
}
.highlight { /* Name.Other */ }
.highlight .py {
  color: #586e75;
}
.highlight { /* Name.Property */ }
.highlight .nt {
  color: #268bd2;
}
.highlight { /* Name.Tag */ }
.highlight .nv {
  color: #268bd2;
}
.highlight { /* Name.Variable */ }
.highlight .ow {
  color: #859900;
}
.highlight { /* Operator.Word */ }
.highlight .w {
  color: #586e75;
}
.highlight { /* Text.Whitespace */ }
.highlight .mf {
  color: #2aa198;
}
.highlight { /* Literal.Number.Float */ }
.highlight .mh {
  color: #2aa198;
}
.highlight { /* Literal.Number.Hex */ }
.highlight .mi {
  color: #2aa198;
}
.highlight { /* Literal.Number.Integer */ }
.highlight .mo {
  color: #2aa198;
}
.highlight { /* Literal.Number.Oct */ }
.highlight .sb {
  color: #93a1a1;
}
.highlight { /* Literal.String.Backtick */ }
.highlight .sc {
  color: #2aa198;
}
.highlight { /* Literal.String.Char */ }
.highlight .sd {
  color: #586e75;
}
.highlight { /* Literal.String.Doc */ }
.highlight .s2 {
  color: #2aa198;
}
.highlight { /* Literal.String.Double */ }
.highlight .se {
  color: #cb4b16;
}
.highlight { /* Literal.String.Escape */ }
.highlight .sh {
  color: #586e75;
}
.highlight { /* Literal.String.Heredoc */ }
.highlight .si {
  color: #2aa198;
}
.highlight { /* Literal.String.Interpol */ }
.highlight .sx {
  color: #2aa198;
}
.highlight { /* Literal.String.Other */ }
.highlight .sr {
  color: #dc322f;
}
.highlight { /* Literal.String.Regex */ }
.highlight .s1 {
  color: #2aa198;
}
.highlight { /* Literal.String.Single */ }
.highlight .ss {
  color: #2aa198;
}
.highlight { /* Literal.String.Symbol */ }
.highlight .bp {
  color: #268bd2;
}
.highlight { /* Name.Builtin.Pseudo */ }
.highlight .vc {
  color: #268bd2;
}
.highlight { /* Name.Variable.Class */ }
.highlight .vg {
  color: #268bd2;
}
.highlight { /* Name.Variable.Global */ }
.highlight .vi {
  color: #268bd2;
}
.highlight { /* Name.Variable.Instance */ }
.highlight .il {
  color: #2aa198;
}
.highlight { /* Literal.Number.Integer.Long */ }

/*# sourceMappingURL=main.css.map */