@media (prefers-color-scheme: dark) {
  a:link:active,
  a:visited:active {
    color:#c9a0ff;
  }
  body {
    background: #1a1a1a;
    color: #ddd;
  }
}
@media (prefers-color-scheme: light) {
  a:link:active,
  a:visited:active {
    color:#4a1553
  }
}

html, body {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 35em;
  padding: 2em 1em 0;
  font-size: large;
}

footer {
  margin: auto auto 0;
  padding: 1em 0;
}

header > h1 {
  display: inline;
  line-height: 0.5;
}
header > time {
  font-size: medium;
}

a:link {
  color:#a42e6b
}
a:visited {
  color:#d19fbd
}

#feed { max-width: 1em; }

h1, h2 {
  font-weight: normal;
  line-height: 1;
}
h1 { margin: 0; }
h2 { margin: 2em 0 0; }

p {
  margin: 1em 0 0;
  line-height: 1.5;
}

#posts {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

#posts > li {
  margin-bottom: 1em;
}

#posts time {
  display: block;
  font-size: small;
}

time { color: grey; }
