img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  text-decoration: none;
  font-style: normal;
}

.gallery-item {
  width: calc((100% - 2 * 24px) / 3);
  transition: transform 0.3s linear;
}

.gallery {
  margin: 0 auto;
  max-width: 1158px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.gallery-item:hover {
  transform: scale(1.044);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
