html {
  font: 100% / 1.5;
  color: var(--clr-light-a0);
  background: var(--clr-surface-tonal-a0);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 16px;
}

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#container {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100vh;
}

main {
  display: grid;
  padding: 0 1rem 1rem 1rem;
  min-height: 0;
  align-content: start;
  overflow-y: scroll;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.25em;
}

/* Links */
a {
  color: #ccc;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

/* Lists */
ul,
ol {
  list-style-position: inside;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}
