.articleReader {
    width: 50vw;
    height: auto;
    min-height: 100%;
    color: #c0caf5;
    margin-left: 25vw;
    display: block;
    position: relative;
    font-family: "Noto Sans";
    font-size: 1rem;
}

.articleReaderHeader {
    display: block;
    position: relative;
    width: 50vw;
    height: auto;
    color: #c0caf5;
    margin-left: 25vw;
    border-bottom: 1px solid #414868;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.articleReaderHeaderText {
    display: inline;
    color: #c0caf5;
    font-size: 1.4rem;
}

.articleReaderHeaderDate {
    display: inline;
    color: #565f89;
    font-size: 0.7rem;
    margin-left: 0.2rem;
}

pre {
    background-color: #24283b;
    border-radius: 0.3rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

code {
    background-color: #24283b;
    border-radius: 0.2rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

img {
    opacity: 0.7;
    max-width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 0;
}

h1,
h2 {
    border-bottom: solid 1px #414868;
}

.articleFooter {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.articleFooterHr {
    width: 3rem;
    color: #414868;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #414868;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.articleFooterText {
    color: #c0caf5;
    font-size: 0.8rem;
}

@media only screen and (orientation: portrait),
only screen and (max-width: 700px),
only screen and (max-height: 700px) {
    .articleReader {
        font-size: 0.7rem;
        margin-left: 5vw;
        width: 90vw;
    }

    .articleReaderHeader {
        width: 90vw;
        margin-left: 5vw;
    }

    .articleFooterText {
        font-size: 0.5rem;
    }

    footer {
        margin-top: 2rem;
    }
}

blockquote {
    border-left: solid #414868 2px;
    padding-left: 5px;
    margin-left: 30px;
    box-shadow: 0 0 5px #414868;
}