:root {
  --font-body: MonoLisaText, serif;
  --font-code: MonoLisaCode, monospace;
}

body {
  font-family: var(--font-body);
  max-width: 768px;
}

code {
  font-family: var(--font-code);
}

header > nav,
header > nav > ul {
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
}

header > nav > ul {
  margin: 0;
  padding: 0;
}
header > nav > ul > li {
  list-style: none;
}

.site-title {
  font-weight: bold;
}
