/* styles.css */
:root {
    --bg: #1e272e;
    --text: #d2dae2;
    --incomplete: #ff6b6b;
}

body {
    background: var(--bg);
    color: var(--text);
    //font-family: //    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;

    //font-family: "EB Garamond", serif;
    font-family: "Crimson Pro", serif;
    //font-family: "Merriweather", serif;
    font-size: 1.25rem;
}

.container {
    padding: 2rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--text);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.3s;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.6;
    text-align: left;
}

.main-content p:first-of-type::first-letter {
    color: #f53b57;
    font-family: Georgia;
    float: left;
    font-size: 3.4em;
    padding: 0.1rem;
    padding-top: 0.125em;
    padding-right: 0.1em;
    line-height: 0.8;
}

.toc-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 2rem auto;
}

.toc-list li {
    margin: 0.5rem 0;
}

.toc-list a {
    color: var(--text);
}

.toc-list a.disabled {
    color: rgba(210, 218, 226, 0.5);
    pointer-events: none;
}

.toc-list a.incomplete {
    color: var(--incomplete);
}

blockquote {
    background: #485460;
    border-left: 10px solid #808e9b;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    //quotes: "\201C" "\201D" "\2018" "\2019";
}
//blockquote:before {
//    color: #808e9b;
//    content: open-quote;
//    font-size: 4em;
//    line-height: 0.1em;
//    margin-right: 0.25em;
//    vertical-align: -0.4em;
//}
blockquote p {
    display: inline;
}

blockquote p + p::before {
    content: "\A";
    white-space: pre;
}
