* {
  box-sizing: border-box;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  justify-content: center;
}
.gallery-item {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.gallery-link {
}
.gallery-image {
  display: flex;
  max-width: 360px;
  height: auto;
  cursor: pointer;
  transition: transform 250ms ease-in-out;
}
.gallery-image:hover {
  transform: scale(1.1);
}
