body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #1a1a1a; /* A darker background to match the comic's mood */
    color: #f0f0f0;
    font-family: sans-serif;
}
.comic-container {
    text-align: center;
    max-width: 600px; /* Constrain width for better readability */
    width: 90%;
}
.comic-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Softens the edges */
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Adds a subtle lift */
}

/* Container for date and navigation */
.comic-meta {
    margin-top: 15px;
    color: #aaa; /* Lighter grey for less attention */
    font-size: 0.9em;
}

.comic-meta .date {
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: space-between; /* Pushes prev/next to the sides */
    font-size: 1.2em;
}

nav a {
    color: #8ab4f8;
    text-decoration: none;
    padding: 5px 10px;
}