* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  background-color: #fafafa;
  color: #212121;
}

ul {
  margin: 0;
  padding-left: 0;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 156px;
}
.gallery-item {
    width: calc((100% - 48px) / 3);
}
.basicLightbox {
    background: rgba(46, 47, 66, 0.8);
}