.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 800px;
    padding: 10px;
    margin: 0 auto; 
    justify-content: center;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
    justify-content: center;
}

.gallery img:hover {
    transform: scale(1.05);
}