body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}
.galery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.thumbnail {
  width: 250px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.thumbnail:hover {
  opacity: 0.8;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.modal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
}
.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}
