ul {
  list-style: none;
}

.gallery {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 24px 0;

  width: 1128px;
}

.gallery-item {
  flex: 0 0 calc((100% - 48px) / 3);

  height: 200px;
}
.gallery-link {
  display: block;
  height: 100%;
}

.gallery-link:hover .gallery-image,
.gallery-link:focus .gallery-image {
  transform: scale(1.1);
}

.gallery-image {
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out;
}
