* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  max-width: 1128px;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
}

.gallery {
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 24px;
  list-style: none;

  .gallery-item {
    overflow: hidden;
    border-radius: 10px;

    &:hover {
      transform: scale(1.05);
      transition: all 0.3s ease-in-out;
    }
  }
}

.basicLightbox__placeholder img {
  border-radius: 10px;
}