.gallery {
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding: 24px 156px;
    margin: 0;
    background-color: #fff;
    transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
.gallery .gallery-item {
    width: calc((100% - 32px) / 3);
}

.gallery .gallery-item:hover {
    transform: scale(1.05);
}
  
.gallery img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-image {
    cursor: url('./bxs_hand-down.svg') 12 0, pointer;
}
