header > nav {
  margin-bottom: 3rem;
}

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

header > nav a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 0.1em;
  font-size: 2rem;
  font-family: "Cascadia ASCII";
  font-style: italic;
  text-decoration: none;
  color: currentColor;
  padding: 0.2em 0.5em;
  border-radius: 0.5em;
  background-color: var(--theme-accent-dark);
  transition: all 0.1s ease-in-out;
}

header > nav a:hover {
  background: var(--theme-hover);
  gap: 0.5em;
  padding: 0.2em 0.1em;
}

header > nav a::before, header > nav a::after {
  display: inline-flex;
  width: 1.5ch;
  height: 1.25em;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

header > nav a::before {
  content: "";
  background-image: url("https://static.sunsetkookaburra.net/font/lbrace.svg");
}

header > nav a::after {
  content: "";
  background-image: url("https://static.sunsetkookaburra.net/font/rbrace.svg");
}

header > nav a > img {
  width: 1.25em;
  height: 1.25em;
  border: 0.15em solid var(--theme-fg);
  border-radius: 50%;
}
