body {
    font-size: 1.4rem;
    font-family: 'Noto Serif', 'Georgia', serif;
    color: #130205;
    background-color: #F0E1CE;
}

.container {
    max-width: 65%;
    margin: 20px auto;
    padding: 20px;
}

.container img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

sup {
    line-height: 0;
}

article div {
    line-height: 1.5;
}

header,
footer {
    text-align: center;
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 1px solid #130205;
    margin: 40px auto 20px auto;
    width: 50%;
}

header h1 {
    font-family: 'Noto Serif', 'Georgia', serif;
}

footer,
.post-body {
    font-family: 'Noto Serif', 'Georgia', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* List styles */
ul.posts {
    list-style: none;
    padding: 0;
}

ul.posts li {
    padding: 10px 0;
}

ul.posts li a {
    font-family: 'Noto Serif', 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
}

ul.posts li span {
    font-family: 'Noto Serif', 'Georgia', serif;
    font-size: 0.9rem;
    margin-top: 15px;
    margin-left: 25px;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        color: #F0E1CE;
        background-color: #111;
    }

    hr {
        border-top: 1px solid #F0E1CE;
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {

    /* Reduce font size and tighten margins for mobile */
    body {
        font-size: 1rem;
    }

    .container {
        max-width: 90%;
        padding: 10px;
        margin: 10px auto;
    }

    ul.posts li a {
        font-size: 1rem;
    }

    hr {
        margin: 20px auto 10px auto;
    }
}