/* Global max container limit */
.container {
  max-width: 700px;
}

/* Body */
body, ul, ol, li, blockquote {
   color: #222222;
   font-family: 'EB Garamond', serif;
   font-size: 1.8rem;
   -webkit-font-smoothing: subpixel-antialiased;
    margin:0;
    -webkit-font-feature-settings: "kern", "liga";
    -moz-font-feature-settings: "kern", "liga";
    font-feature-settings: "kern", "liga";
    text-rendering: optimizeLegibility;
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.0rem;
    color: #222222;
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: 1.5em;
    font-weight: 600;
}

/* Article heading*/
h1 {
   font-size: 3.4rem;
}

/* Share this article on */
h4 {
  font-size: 2rem;
}

/* Dont use bold font */
strong {
  font-weight: 500;
}

/* Links */
/* The order is important! */
a { color: #666;
    text-decoration: none;
}
/*a:link    { color: #c00 }
a:visited { color: #0c0 }
a:hover   { color: #00c }
a:active  { color: #ccc }*/

/* Justifying */
.text p {
  line-height: 1.5;
  text-align: justify;
}

/* Navigation */
#top {
  margin-top: 10%;
  padding-bottom: 1rem;
  height: 80px;
}

#logo {
  height: 80px;
}

#desktopnav {
  display: none;
}

#desktop-site-nav {
  margin: 20px 0 20px 0;
}

#desktop-site-nav ul {
    text-align: right;
}

#desktop-site-nav li {
    display: inline-block;
    padding-left: 2rem;
}

#mobile-site-nav li {
   display: inline-block;
   padding-right: 2rem;
}

#mobile-site-nav {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-nav a {
    text-decoration: none;
    color: #666;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 1.8rem;
}

.row {
   margin: 3.0rem 0;
}

/* Global links */
.article-date {
    color: #666;
    display: none;
}

#post-list li {
	display: block;
}

/* Footer */
hr {
    margin: 0;
}
footer {
    padding-top: 2rem;
    color: #666;
    text-align: center;
}

/* Article */
#article-header {
   margin-bottom: 2rem;
}
#article img {
  max-width: 100%;
  box-sizing: border-box;
}

/* Code */
pre {
	padding-left: 1rem;
	overflow: auto;
	margin-bottom: 20px;
	color: white;
	font-style: normal;
    color: #222222;
	font: normal 1.0rem Inconsolata, monospace;
    line-height: 1.5em;
}



/* Larger than mobile */
@media (min-width: 400px) {
  body, ul, ol, li, blockquote {
    font-size: 2.2rem;
  }
  pre {
    font-size: 1.7rem;
  }
}

/* Larger than phablet */
@media (min-width: 550px) {
  #desktopnav {
    display: block;
  }
  #mobilenav {
    display:none;
  }
}

/* Larger than tablet */
@media (min-width: 750px) {
  .article-date {
    display: inline;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}


