.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Space between boxes */
    justify-content: center;
    padding: 20px;
    
}

.image-box {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 300px; /* Fixed width for each box */
    text-align: center;
    background-color: lightblue;
}

.image-box img {
    max-width: 300%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto; /* Center image in the box */

}