* { box-sizing: border-box; } :root { --text: #222; --text-dim: #444; --text-link: #037; --text-link-visited: #730; --background: #FFF; --background-dim: #F8F0F0; --color-a: rgb(11, 113, 126); --color-a-dim: rgb(7, 80, 90); } @media (prefers-color-scheme: dark) { :root { --text: #eee; --text-dim: #bbb; --text-link: #ddf; --text-link-visited: #fed; --background: #001; --background-dim: #333; --color-a: #3a8; --color-a-dim: rgb(158, 228, 208); } } html, body { padding: 0; margin: 0; } body { font-size: 1.1rem; line-height: 1.4; font-family: sans-serif; padding: 2rem 5vw; color: var(--text); background-color: var(--background); } a { color: var(--color-a); } h1, h2, h3 { margin: 0; font-family: serif; } #nav-access { /* shove it above the page and make sure it's always on top*/ position: absolute; top: -20rem; left: 0; width: 100%; z-index: 1000000; text-align: center; font-size: 2rem; list-style: none; padding: 0; margin: 0; overflow: hidden; }