:root { --bg: #101010; --text: white; --main: palevioletred; --accent: hotpink; } .footpara { display: inline; } #content { max-width: 80ch; margin: auto; font-family: serif; } body { background-color: var(--bg); color: var(--text); } .logo { text-align: center; color: var(--main); user-select: none; margin: 0; padding: 0; font-family: monospace; } .logo:hover { color: var(--accent); } a { color: var(--main); text-decoration: none; } a:hover { color: var(--bg); background-color: var(--accent); } a:has(> img):hover { background-color: transparent; } .pages { font-family: monospace; font-size: 1.2em; text-align: center; } ul { list-style-type: circle; } ol { list-style-type: upper-roman; } hr { border-color: var(--main); border-style: dashed; }