/* Typography */

html {
    font-size: 15px; 
}

body {
    width: 87.5%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0;
    font-family: Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
    background-color: #fffff8;
    color: #111;
    max-width: 800px;
}

h1 {
    font-weight: 400;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
    line-height: 1; 
}

h2 {
    font-style: italic;
    font-weight: 400;
    margin-top: 2.1rem;
    margin-bottom: 1.4rem;
    font-size: 2.2rem;
    line-height: 1; 
}

p,
ol,
ul {
    font-size: 1rem;
    line-height: 2rem; 
}

/* Code */

pre, code {
  font-size: .9em;
  font-family: "Lucida Console", Monaco, monospace;
}

pre code {
  display: block;
  border: 1px solid #ddd;
  box-shadow: 5px 5px 5px #eee;
  padding: 1em;
  overflow-x: auto;
  line-height: 1.75;
}

code {
  background: #f9f9f9;
}

/* Links */
a {
  color: black;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid;
}

sup a {
  border-bottom: none;
}

/* Miscellanea */
hr {
  display: block;
  height: 1px;
  width: 55%;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; 
}

/* icons */
@font-face {
  font-family: 'icomoon';
  src: url('/fonts/icons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-calendar:before {
  content: "\e900";
}
.icon-clock:before {
  content: "\e901";
}
.icon-tag:before {
  content: "\e903";
}

