/* Styles for Heather - A Hyperminimal Jekyll Theme */

/* BASSCSS Reset - http://jxnblk.github.io/basscss */
body, h1, h2, h3, h4, h5, h6, dl, ol, ul, p,
button, input, select, textarea {
  margin: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}


/* typography */

/* mobile < 640px */
html {
  font-size: 18px;
}
/* desktop */
@media screen and (min-width: 640px) {
  html {
    font-size: 20px;
  }
}

body {
  line-height: 1.75;
  font-family: 'Merriweather', serif;
}

h1, h2, h3 { line-height: 1.25; }
h1 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

ul, ol,
p, .p {
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
/* highlighted code blocks */
pre {
  font-size: 0.75rem;
  line-height: 1.25;
  padding: 0.75rem;
}
/* inline code */
li > code, p > code {
  font-weight: bold;
}
.copyright { font-size: 0.6rem; }

a { text-decoration: none; }

/* colors */
body { color: #F2F2F2; }
body { background-color: #2d2e74; }
a { color: #F1E91B; }
a:hover { color: #C4B931; }
h1 a { color: #F2F2F2;}

.wrap {
  width: 90%;
  max-width: 60ex;
  margin: 0 auto;
  padding: 32px 5% 64px 5%;
}

/* wrap code lines if too long to fit the screen width */
pre {
  white-space: pre-wrap;
}

.m-0 { margin-top: 0; margin-bottom: 0; }
.mb { margin-bottom: 32px; }

.post { margin-bottom: 64px; }
.post img { max-width: 100%; }

.center { text-align: center; }
.fl { float: left; }
.fr { float: right; }

