/* Color references: https://colordrop.io/palette/58271 */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, serif;	
    font-size: 20px;
    max-width: 40em;
    margin: 0 auto;
    padding: 1em;
    color: #000;
    background-color: #fff;
}

::selection {
    background-color: #53B434;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5em;
    margin-bottom: 1em;
    margin-top: 2em;
    color: #3a8b54;
}

p {
    line-height: 1.75em;
    margin-bottom: 1.25em;
}

ul, ol {
    margin-bottom: 1.25em;
    padding-inline-start: 40px;
}

ul li, ol li {
    line-height: 1.75em;
    margin-bottom: 0.5em;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 1.5em 0;
}

a {
    color: #4da66b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    color: #6cbf7f;
}

a:visited {
    color: #8bcf8e;
}

header#masthead a {
    font-size: 2em;
    font-weight: bold;
    color: #3a8b54;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        color: #fff;
        background-color: #000;
    }
    a {
        color: #a8d59f;
    }
    a:active {
        color: #c6e1a6;
    }
    a:visited {
        color: #e2f3d4;
    }
}
