.gallery{
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
  padding: 15px;
}
.gallery img {
  width: 480px;
}
.gallery-item{
  padding: 10px;
  transition: transform 0.25s ease,
  box-shadow 0.25s ease;
}
.gallery-item:hover,
.gallery-item:focus{
  transform: translateY(-6px);
  box-shadow: 0px 8px 20px rgba(30, 30, 43, 0.08),
  }

.basicLightbox__placeholder img {
  max-width: 1280px;
  width: 100%;
  height: auto;
    }
