ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  max-width: 1128px;
  min-height: 100vh;
  gap: 24px;
  margin: 0 auto;
}

.gallery-item {
  flex: 1 1 calc((100% - 48px) / 3);
  max-width: 360px;
  max-height: 200px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover,
.gallery-item:focus {
  transform: scale(1.04);
}

.gallery-link {
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
