/* Global Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5em;
    background-color: #111;
    color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    max-width: 40%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

/* Heading */
h1 {
    font-size: 2.5em;
    font-weight: 300;
    margin: 0 0 20px;
}

/* Image Container */
.image-container {
    margin: 20px 0;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Dates */
.dates {
    font-size: 1.25em;
    color: #888;
    margin-top: 20px;
}

.date {
    font-size: 1.25em;
    color: #888;
    margin-top: 20px;
}
/* Mobile Styles */
@media only screen and (max-width: 768px) {
    /* Container */
    .container {
        max-width: 90%;
        padding: 10px;
    }

    /* Heading */
    h1 {
        font-size: 1.75em; /* Adjusted from 2.5em */
    }

    /* Dates */
    .dates {
        font-size: 1em; /* Adjusted from 1.25em */
    }
}

@media only screen and (max-width: 480px) {
    /* Container */
    .container {
        max-width: 95%;
        padding: 10px;
    }

    /* Heading */
    h1 {
        font-size: 1.5em; /* Further reduce for smaller screens */
    }
}

