.gallery{
list-style: none;
display: flex;
gap: 16px;
flex-wrap: wrap;
justify-content: center;

}

.gallery-image{
    width: 360px;
    height: 218px;
    transition: transform 0.3s ease;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.7);
}

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