/* Updated green-themed CSS for the blog */
@font-face {
    font-family: "YeZi";
    src: url("/fonts/也字工厂淡淡黑.ttf") format("truetype");
}

body {
    /* font-family: Arial, sans-serif; */
    font-family: "YeZi", Arial, sans-serif;
    font-size: 1.5em;
    background-color: #e6f4e8; /* Soft, green-tinted background */
    color: #2d3e2f; /* Darker greenish-brown text for readability */
    margin: 0;
    padding: 0;
}

h1,h2 {
    color: #1b512d;
}

a {
    color: #1e856e; /* Muted teal for links */
    text-decoration: none;
}

a:hover {
    color: #145243; /* Darker shade on hover */
    text-decoration: underline;
}

header {
    background-color: #1b512d; /* Deep green background for header */
    color: #e6f4e8; /* Light greenish-tint text */
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #e6f4e8; /* Light greenish-tint text */
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #f0f9f2; /* Light green for content background */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.post-list {
    list-style-type: none;
    padding: 0;
}

.post-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #b7d4c0; /* Light green border between posts */
    padding-bottom: 10px;
}

.post-item h2 {
    margin: 0;
}

.post-item p {
    color: #4a6452; /* Medium greenish-brown for date text */
    margin-top: 5px;
}

.article {
    line-height: 1.6;
}

.article p {
    margin: 10px 0;
}

.article blockquote {
    border-left: 4px solid #1e856e; /* Teal border for blockquote */
    padding-left: 15px;
    color: #4a6452; /* Slightly muted color for quote */
    font-style: italic;
    background-color: #e9f5ec; /* Subtle green tint for blockquote background */
}

footer {
    background-color: #1b512d; /* Deep green for footer */
    color: #e6f4e8; /* Light greenish-tint text */
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

footer a {
    color: #f0f9f2; /* Very light green for footer links */
}

footer a:hover {
    color: #c8e1d2; /* Slightly darker shade for hover */
}

