/* General Setup */
body {
    margin: 0;
    padding: 2rem 1rem;
    font-family: 'Nunito Sans', sans-serif;
    background-color: #212121;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Main content container */
.content-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styling */
.main-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.main-header h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.main-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
}

/* Image Exhibit Styling */
.exhibit {
    margin: 0;
    padding: 2rem;
    background-color: #012b18;
    /* Deep Green */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.exhibit img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Slightly rounded corners for the image itself */
}

.exhibit figcaption {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1.5rem 1rem;
    }

    .main-header h1 {
        font-size: 2.2rem;
    }

    .exhibit {
        padding: 1rem;
    }
}