:root { --light: #eee; --dark: #1c1c1c; --highlight: #ff3a21 } body { color: var(--light); background: var(--dark); font-family: monospace; font-size: 16px; } #navigation { text-align: center; } .centered { text-align: center; } #content { width: 700px; max-width: 100%; margin: auto; } a { color: var(--highlight); } a:hover { color: var(--dark); background: var(--highlight); text-decoration: none; } ul { list-style: none; } li:before { content: '* '; } code { background: black; padding: 0 6px; border-radius: 4px; }