body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #262626;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #070707;
    margin: 0;
    font-style: italic;
    background-color: red;
}

header p {
    font-size: 1.2em;
    color: #070707;
    margin: 0px 0 0;
    font-style: italic;
    background-color: red;
}

.gallery {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start; /* Align images to the top of the row */
}

.flex-col img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    object-fit: contain;
}

/* For very small screens, stack images in a single column */
@media (max-width: 600px) {
    .flex-row {
        flex-direction: column;
    }
    .flex-row img {
        width: 100%;
    }
}
