.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-item {
  list-style: none;
}
.gallery-image:hover {
  transform: scale(1.03);
  transition: transform 0.5s ease-in-out;
}
.gallery-image {
  width: 360px;
  height: 200px;
}
