body {
    font-family: sans-serif;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.gallery-item {
    width: 300px;
}

.gallery-image {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 250ms ease;
}

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