/* Copyright ©2014 Robert Sesek. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
body {
  font-family: 'Source Serif Pro', Georgia, Times, serif;
  font-size: 1.1em;
  line-height: 1.5em;
  text-wrap: pretty;
}
h1, h2, h3, h4 {
  font-family: 'Libre Franklin', 'Franklin Gothic', Verdana, sans-serif;;
  font-weight: 600;
  text-wrap: balance;
}
h1 {
  font-size: 1.8em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.2em;
}
h4 {
  font-size: 1.05em;
}

/* Layout */
body {
  margin: 0 auto 0 auto;
  padding: .8em;
  max-width: 45em;
}
p, pre, ul, ol {
  line-height: 1.6em;
}
p, pre, ul, ol, img, table {
  margin-bottom: 1.25em;
}
h1 {
  line-height: 1.3em;
}
h2 {
  margin-bottom: .5em;
}
h3 {
  margin-bottom: .25em;
}
ul, ol {
  padding: 0 1.75em;
}
img {
  max-width: 45em;
}

/* Elements */
hr {
  margin: .2em 0 1.25em 0;
  border: none;
  height: 1px;
  background-color: rgb(190, 190, 190);
}
p code, pre {
  background-color: rgb(230, 230, 230);
  padding: .2em;
  overflow: scroll;
  font-size: 1em;
}
pre:has(code.language-mermaid) {
  background: none;
}
blockquote {
  margin: 1em 2.5em;
  border-left: .4em solid rgb(200,200,200);
  padding-left: .5em;
  background-color: rgb(230,230,240);
}
cite {
  font-size: .8em;
  line-height: .8em;
  color: rgb(150,150,150);
  display: block;
}
table {
  border-collapse: collapse;
  table-layout: fixed;
}
td, th {
  border: 1px solid gray;
  vertical-align: top;
  padding: .2em;
}
.pdf {
  width: 100%;
  height: 600px;
}

/* Color */
body {
  background-color: rgb(245, 245, 247);
}
a {
  color: rgb(50, 50, 205);
}
a:hover {
  color: rgb(130, 130, 240);
}

/* Special Sections */
#header h5 {
  font-weight: normal;
}

span.date {
  font-size: .75em;
  color: rgb(100,100,100);
}

.center {
  text-align: center;
}

/* Mobile */
@media screen and (max-width: 800px) {
  a.title {
    display: block;
  }

  img {
    max-width: 100%;
  }
}
