@media (prefers-color-scheme: dark) {
    body {
        background-color: #181818;
        color: #efefef;
    }

    blockquote::after {
        background-color: #b3b3b3;
    }

    span,
    p::before, p::after {
        color: #b3b3b3;
    }

}

@media (prefers-color-scheme: light) {
    body {
        background-color: #efefef;
        color: #181818;
    }

    blockquote::after {
        background-color: #3b3b3b;
    }

    span,
    p::before, p::after {
        color: #3b3b3b;
    }

}

body {
    text-align: center;
    font-size: 16pt;
    line-height: 2rem;
}

body, blockquote, dl, dt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

p, dd, blockquote, h2 {
    margin: unset;
}

blockquote:not(:has(+ h2))::after {
    content: '';
    width: clamp(0px, 80vw, 24rem);
    height: 1px;
}

dt {
    font-size: 1.8rem;
}

dt::after {
    content: 'as';
    font-size: 1rem;
}

dd {
    margin-bottom: 1.8rem;
}

h1, h2 {
    margin-top: 6rem;
    /* margin-bottom: 3rem; */
}

p::before, p::after {
    content: '"';
    font-size: 120%;
    margin-inline: .2rem;
    line-height: 0;
}

p, blockquote::after {
    margin-top: 2.4rem;
}

p:not(:first-child) {
    margin-top: .6rem;
}

span {
    font-size: 1rem;
}