* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
.gallery {
  max-width: 1128px;
  margin: 0 auto;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-item {
  width: calc((100% - 48px) / 3);
  transition: scale 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
  scale: 1.05;
}
.gallery-image {
  width: 100%;
  height: 100%;
}
