* {
  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;
}

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

.gallery {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1440px;
  height: auto;
  padding: 24px;
  margin: auto;
  justify-content: center;
  align-items: center;
}
li {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(33.333% - 48px);
}
.gallery-image {
  width: 100%;
  height: auto;

  /* width: 360px;
  height: 200px; */
  transition: transform 0.3s ease;
}

.gallery-image:hover,
.gallery-image:focus {
  transform: scale(calc(376 / 360), calc(208 / 200));
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=36603), pointer;
}

.basicLightbox__placeholder img {
  display: block;
  max-width: 100vw; /* не ширше за вікно */
  max-height: 100vh; /*не вище за вікно */
  object-fit: contain; /*зберігає пропорції */
  margin: 0 auto; /*центрування */
}
