* {
  box-sizing: border-box;
}

body {
  margin: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafafa;
  color: #212121;
  line-height: 1.5;
  height: 100%;
}

img {
  display: block;
}
.gallery {
  margin: auto;
  width: 1128px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position:relative
}

.gallery-item{
  list-style: none;
width: calc((100% - 48px) / 3);
height: 200px;

}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  }

  .gallery-link {
  display: block;
  height: 100%;
  transition: transform 250ms ease;
}

.gallery-item:hover {
  transform: scale(calc(376 / 360));
    z-index: 10; 
}

.basicLightbox {
  background: rgba(46, 47, 66, 0.8); /* затемнення фону */
}

.basicLightbox__placeholder>img:first-child:last-child {
  width: 1112px;
  height: 640px;
  object-fit: cover;
}

