.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1128px;
}

.gallery {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.gallery-link {
  text-decoration: none;
  width: 100%;
  display: flex;
  cursor: zoom-in;
}

.gallery-image {
  display: block;
  width: 360px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  transition: scale 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc((100% - 48px) / 3);
}

.gallery-link:hover .gallery-image,
.gallery-link:focus .gallery-image {
  scale: 1.1;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.795);
}

.basicLightbox {
  cursor: zoom-out;
}
