h1 {
    font-family: "Times New Roman", Times, serif;
    text-transform: lowercase;
    text-align: center;
    margin: 16px 0;
    font-weight: 400; /* not bold */
    font-size: 1.6rem; /* adjust size as needed */
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center; /* center each image horizontally */
    gap: 12px;           /* vertical spacing between images */
    padding: 12px;
}

.gallery img {
    max-width: 300px; /* controls column width; change as needed */
    width: 100%;
    height: auto;
    display: block;
}