* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
.list {
  display: flex;
  flex-wrap: wrap;
  outline: 1px solid red;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
}
.item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.images {
  width: 340px;
  height: auto;
  display: block;
}
.back-drop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8); /* затемнення */
  display: none;                        /* приховано за замовчуванням */
  justify-content: center;             /* центрує по горизонталі */
  align-items: center;                 /* центрує по вертикалі */
  z-index: 1000;                        /* поверх усіх елементів */
}
.back-drop.is-open {
  display: flex;
}
.btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}