@media (prefers-color-scheme: light) {
    
    :root {
        --background-color: #fff;
        --link-color: #0000EE;
        --text-color: #000;
    }
    
}

@media (prefers-color-scheme: dark) {
    
    :root {
        --background-color: #000;
        --link-color: #006fc8;
        --text-color: #fff;
    }
    
}

* {
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Lucida Console', Verdana, Arial, Helvetica, Sans-Serif;
}

body {
    margin: 15px 20px 30px;  /* t lr b */
}

section {
    font-size: 24px;
    line-height: 1.7;
}


/* Anchors */

a:link {
    color: var(--link-color) !important;
    text-decoration: none;
}
a:visited {
    color: var(--link-color) !important;
    text-decoration: none;
}
a:hover {
    color: var(--link-color) !important;
    text-decoration: underline;
}

h1 > a:link, h1 > a:visited, h1 > a:hover {
    color: var(--text-color) !important;
    text-decoration: none;
}

h3 {
    margin-block-end: 1px;
}

a[href^="tel:"] {
    color: var(--text-color) !important;
    text-decoration: none;
}


/* Subtitle */

.subtitle {
    line-height: normal;
    margin-top: 20px;
}

.subtitle > a:link {
    font-size: 20px;
}