body {
    background-image: none !important;
    background-color: ghostwhite !important;
}

.blogpost-container {
    margin: 20px;
    display: flex;
    flex-flow: row nowrap;
}

.blog-post {
    margin: 3vh 12vw;
    width: 80%;

    @media only screen and (max-width: 600px) {
        width: 95%;
        margin: 2vh 2vw;
    }
}

.notes-bar {
    width: 25%;
    border-left: var(--border-thin);
}

h1, h2, h3, h4, h5, h6, p {
    padding-left: 10px;
    padding-right: 10px;
}

h2 {
    font-size: 2.5rem;
}

hr {
    width: 84%;
    margin: 0 8%;
    border: none;
    border-top: 3px dashed var(--dark-antimani);
}

p, blockquote, ol {
    line-height: 2;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.footnote {
    cursor: pointer;
    color: var(--verydark-antimani);
    font-weight: bold;
}

.note-box {
    margin: 5px;
    padding: 5px;
    font-size: var(--font-size-small);
    background-color: var(--light-manila);
    border-radius: 10px;

    min-height: 24vh;
    position: fixed;
    top: 38%;

    visibility: hidden;
    &.visible { visibility: visible; }
}

blockquote, ol, ul, div.double-quote {
    white-space: pre-line;
    margin: 0 3em 0 3em;
    padding: 20px 50px;
    background-color: var(--verylight-manila);
    border-radius: 10px;
}

blockquote.poetry {
    /*transform: translate(-50%);*/
}

blockquote.blockquote-trans, blockquote.blockquote-original {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
}

div.double-quote {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: calc(90% - 6em);

    blockquote {
        width: 50%;
    }
}