/**
  Inspired by:
    * https://ploum.net/
    * https://minimo.netlify.app/
*/

:root {
  --color-black: #212121;
  --color-gray: #bdbdbd;
  --color-white: #fafafa;
}

body {
  color: var();
  background: var(--color-white);
  margin: 40px auto;
  max-width: 650px;
  line-height: 1.4;
  font-size: 1.13em;
  padding: 0 10px;
}

h1 {
  line-height: 1.2;
  text-align: center;
}
h2 {
  line-height: 1.2;
  border-bottom: 1px solid;
}
h3 {
  line-height: 1;
}
pre {
  overflow: auto;
}
quote,
.signature {
  font-style: italic;
  margin: 2em 1em;
}

p,
ul,
ol {
  list-style-type: circle;
}

a {
  color: #169;
  text-decoration: none;
  padding: 0.3em 0;
}
a:hover {
  text-decoration: underline;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
figcaption {
  font-style: italic;
  font-size: 90%;
  text-align: center;
}
.header {
  margin: 1em 0;
  display: block;
  width: 100%;
}
.subtitle {
  text-align: center;
  font-style: italic;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  text-align: center;
  font-variant: small-caps;
  font-weight: bold;
}
.horizontal {
  text-align: center;
  padding: 10px 40px;
}
.horizontal li {
  display: inline-block;
  margin: 0 0.5em;
}
