:root {
    color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
    html {
        color: #cccccc;
        background: #333333;
    }

    a {
        color: yellow;
    }

    a:visited {
        color: orange;
    }

    h1 a, h1 a:visited {
        color: #cccccc;
    }

    #nav a {
        color: #cccccc;
    }
}

@media (prefers-color-scheme: light) {
    html {
        color: black;
        background: white;
    }

    h1 a {
        color: black;
    }

    #nav a {
        color: black;
    }
}

body {
    font-family: sans-serif;
}

#main {
    width: 600px; margin: auto;
}

h1 {
    margin-bottom: 30px;
}

h1 a {
    text-decoration: none;
}

h2 {
    margin-top: 40px;
    font-size: 150%;
    text-align: center;
}

#nav a {
    font-weight: bold;
    text-decoration: none;
}

#nav a:hover {
    text-decoration: underline;
}

span.divider {
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px;
}

p {
    margin-top: 40px;
    line-height: 150%;
}


