

nav {
    display: flex;
}

nav a {
    flex-grow: 1;
}

nav a h3 {
    color: black;
}


/* simple css:  dark mode only */

:root {
  color-scheme: dark;
  --bg: #212121;
  --accent-bg: #2b2b2b;
  --text: #dcdcdc;
  --text-light: #ababab;
  --accent: #ffb300;
  --accent-hover: #ffe099;
  --accent-text: var(--bg);
  --code: #f06292;
  --preformatted: #ccc;
  --disabled: #111;
}

