body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #161616;
    color: #cdaa7d;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 1rem;
    line-height: 1.6rem;
    font-size: 1rem;
}

h1, h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 1rem;
    color: #cd950c;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.25rem;
}

h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
    color: #cd950c;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    border-bottom: 1px solid #303030;
    padding-bottom: 0.5rem;
}


nav {
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 0.5rem;
}

nav ul li a {
    text-decoration: none;
    display: inline-block;
    padding: 0rem 0.5rem;
}

p {
    text-align: center;
}

a {
    text-decoration: none;
    color: #6b8e23;
}

a:hover {
    text-decoration: none;
    color: #74a402
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    margin-top: auto;
}

.footer ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0 0 1rem 0;
}

.footer ul li {
    margin: 0 0.5rem;
}

.footer ul li a {
    text-decoration: none;
    display: inline-block;
    padding: 0 0.5rem;
}


span {
    text-align: center;
    display: block;
}

hr {
    background-color: #303030;
    margin-bottom: 2rem;
    margin-top: 2rem;
    appearance: solid;
    height: 1px;
    border: 0;
    width: 50%;
}

.date {
    display: inline-block;
    color: #7f7f7f;
    font-size: 0.75rem;
    white-space: nowrap;
    margin: 0;
}

.article-list {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 200px;
    box-sizing: border-box;
}

.article-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.pages {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 0;
}

.pages a {
    display: inline-block;
    margin: 0 10px;
    padding: 10 15px;
}

.article-title {
    text-align: center;
}

.article-title h2 {
    font-size: 1.2rem;
    padding: 10px;
    margin: 20px;
}

.article-content {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.article-content p {
    text-align: left;
    margin-bottom: 1.5em;
    line-height: 1.6rem;
}

@media (max-width: 768px) {
    body {
        max-width: 100%;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem; /* 24px */
    }

    .articles {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem;
        max-width: 100%;
    }

    h1 {
        font-size: 1.25rem; /* 20px */
    }

    .articles {
        max-width: 100%;
    }
}