body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#gallery-frame {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 5px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
}

.gallery-column img {
    width: 100%; /* Fit the width of the column */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 5px; /* Add space between images */
}