/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Courier New', Courier, monospace, sans-serif; */
    padding: 20px;
    background: #f5f5f5;
}

/* Flexbox Gallery */
.gallery {
    display: flex;
    flex-wrap:wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1 1 calc(25% - 20px); /* 4 columns by default */
    min-width: 300px;
    max-width: 500px;
    height: auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height:auto;
    object-fit: cover;
    display: block;
}

.caption {
    padding: 12px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .gallery-item {
        flex: 1 1 calc(33.33% - 20px); /* 3 columns */
    }
}

@media (max-width: 600px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px); /* 2 columns */
    }
}

@media (max-width: 400px) {
    .gallery-item {
        flex: 1 1 100%; /* 1 column */
    }
}