/* Parts of the CSS shared by everything */
body {
    font-family: 'Titillium Web', "Roboto", sans-serif;
    /* margin: 0; */
}

html, body {
    background-color: #0b0b0b;
    color: rgb(232, 230, 227);

    /* Unvisited links */
    a:link {
        color: #2080df;
    }
    /* Visited links */
    a:visited {
        color: #a070df;
    }
    /* Hovered links and clicked links */
    a:link:hover, a:link:active {
        color: #40c0ff;
    }
    a:visited:hover, a:visited:active {
        color: #efa9ff;
    }
}

@media (prefers-color-scheme: light) {
    html, body {
        background-color: white;
        color: black;
    }
}

/*em.italics {
    font-style: italic;
}

em.underline {
    text-decoration: underline;
}*/
