body {
    background-color: white;
    color: black;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}

.container {
    width: 60%; /* Use 960px width or a responsive percentage */
    margin: auto;
    padding: 20px;
}

.header {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
}

.content {
    line-height: 1.5;
}

.pesterlog {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    white-space: pre-wrap; /* Preserves line breaks in pesterlogs */
}

a {
    color: #ff0099; /* Example link color, choose one for your OC */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

/* Add these styles to the bottom of your existing style.css file */

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    flex: 1 1 calc(50% - 20px); /* Two items per row on wider screens */
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    /* Enforce a maximum height for uniformity if desired */
    /* max-height: 250px; */ 
    display: block;
    margin: 0 auto 10px auto;
}

.caption {
    font-size: 0.9em;
    text-align: left;
}

h2 {
    border-top: 1px solid black;
    padding-top: 15px;
    margin-top: 25px;
}

.navigation a {
    display: inline-block;
    margin: 15px 0;
    padding: 5px 10px;
    border: 1px solid black;
    background-color: #f0f0f0;
}

.navigation a:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}

