.articleReader {
    width: 80%;
    height: auto;
    min-height: 100%;
    color: #d9d9d9;
    margin-left: 10%;
    display: block;
    position: relative;
    font-family: "Noto Sans";
    font-size: 1rem;
    margin-top: 3rem;
}

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

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

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

pre {
    background-color: #292424;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    border-left: #5e2721 1px solid;
}

code {
    background-color: #292424;
    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 #5e2721;
}

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

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

.articleFooterText {
    color: #d9d9d9;
    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.9rem;
        margin-left: 5vw;
        width: 90vw;
    }

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

    .articleFooterText {
        font-size: 0.5rem;
    }

    footer {
        margin-top: 2rem;
    }
}

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

a {
    color: #973f35;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: #bd4f42;
    text-decoration: underline;
}

note {
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.4rem;
    display: inline-block;
    position: relative;
}

.note-important::before {
    display: block;
    color: #bd4f42;
    font-family: "Noto Sans", "FontAwesome";
    content: " " attr(data-title);
    padding-bottom: 0.5rem;
}

.note-important {
    border: solid #bd4f42 1px;
}

.note-warning::before {
    display: block;
    color: #a3892a;
    font-family: "Noto Sans", "FontAwesome";
    content: " Warning";
    padding-bottom: 0.5rem;
}

.note-warning {
    border: solid #a3892a 1px;
}

.note-info::before {
    display: block;
    color: #3578a5;
    font-family: "Noto Sans", "FontAwesome";
    content: " Info";
    padding-bottom: 0.5rem;
}

.note-info {
    border: solid #3578a5 1px;
}
