body {
    font-family: "Lucida Sans", "Lucida Grande", sans-serif;
    text-align: center;
    background-color: #ffffff;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Specific styling for your main logo */
#site-logo {
    max-width: 100%;
    height: auto;
    border: none; /* Removes the border so it blends cleanly */
    margin-bottom: 10px;
    border-radius: 8px; /* Optional: slightly softens the edges of your dark image */
}

nav a {
    color: #0000EE;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* The style for your comic posts */
.post-image, .post-video {
    max-width: 100%;
    height: auto;
    border: 2px solid #000000;
    margin: 20px 0;
}

.post-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.post-date {
    font-size: 0.9rem;
    color: #666;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 60px 0;
}

.archive-item {
    margin-bottom: 50px;
}