h1, h2, h3, h4, h5, h6 {
    color: var(--tertiary-2);
}

b {
    font-weight: 700;
    color: var(--tertiary-3);
}

blockquote {
    display: inline-block;
    padding: 3rem 15%;
    font-size: 1.5rem;
    clear: both;
    color: var(--tertiary-3);
    font-weight: 700;
    margin: 1rem auto 2.5rem;
    position: relative;
    text-align: center;
}

blockquote::before { 
    content: " ";
    border-top: 3px solid var(--tertiary-3);
    position: absolute;
    top: .625rem;
    width: 50%;
    height: 1px;
    left: 25%;
}

blockquote::after {
    /* content: "from " attr(cite); */
    content: " ";
    border-bottom: 3px solid var(--tertiary-3);
    position: absolute;
    top: auto;
    width: 40%;
    height: 2rem;
    left: 30%;
    bottom: .625rem;
}

dt {
    font-weight: 700;
    color: var(--tertiary-3);
}

dfn {
    font-style: italic;
}

