/*
I believe it should be up to the reader to select font and color in their browser.
But most webpages forces fonts and color (light on dark, WTF?), but this is mine, so...
Really, I find Comic easy to read ( https://www.thecut.com/2020/08/the-reason-comic-sans-is-a-public-good.html ),
and need a white background so as not to have to deal with transparency.
Font details: Fonts/FontSources.txt
*/
p {
}

h1 {
    background-color: #eeffee;
    text-align: center;
    color: #331111;
}

h2 {
    background-color: #eeeeff;
    color: #113311;
}

h3 {
     background-color: #ffeeee;
     color: #113311;
}

body {
    background-color: #ffffff;
    color: #222255;
}

a:hover {
    color: #22ee22;
}

@font-face {
    font-family: ComicMono;
    src: url('/Fonts/ComicMono.ttf');
}

pre {
    font-family: ComicMono, Consolas, monospace;
    font-size: smaller;
}

@font-face {
    font-family: ComicNeue;
    src: url('/Fonts/ComicNeue-Regular.ttf');
}

* {
    font-family: ComicNeue, "Comic Sans MS", "Comic Sans", Comic, sans-serif;
}

.FixedWidthFont {
    font-family: ComicMono, Consolas, monospace;
    font-size: smaller;
}
