* {
  /* font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, Adwaita Sans, Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif; */
  font-family: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;

  /* From Dracula: https://en.wikipedia.org/wiki/Dracula_%28color_scheme%29 */
  --background: #282a36;
  --foreground: #f8f8f2;
  --comment: #6272a4;
  --purple: #bd93f9;

  background: var(--background);
  color: var(--foreground);
  box-sizing: border-box;
}


h1, h2 {
  font-weight: 800;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, Adwaita Sans, Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif;
}



body {
  margin: auto;
  max-width: 38em;
  padding: 3em 1em 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
}


nav {
  padding: 0.5em 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2em;

  font-size: 120%;
  #homelink {
    font-size: 120%;
  }

  a {
    text-underline-offset: 2px;
    font-weight: 600;
  }

  a:hover {
    /* text-decoration-color: var(--foreground); */
    color: var(--purple);
  }

  img {
    height: 1em;
    color: var(--foreground);
    display: inline;
  }
  
}

footer {
  margin-top: auto;
  width: 100%;
  font-size: 80%;
  padding: 1em 0;
  border-top: 1px solid var(--comment);
}


a {
  transition: all 0.2s ease;
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-decoration-skip-ink: auto;
}
a:hover {
  color: var(--purple);
}

img {
  color: var(--comment);
  border-radius: 0.5em;
}

ul {
  padding: 0;
  list-style-position: inside;
  list-style-type: "▸  ";

  li + li {
    margin-top: 0.25em;
  }
}

