.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 800px;
  margin: auto;
}

.gallery-item {
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-item:hover {
  transform: scale(1.1);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 60%;
  max-height: 60%;
  border: 10px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  animation-name: lightbox;
	animation-duration: 2s;
	opacity: 1;
}

@keyframes lightbox {
  0% {opacity: 0;}

  100% { opacity: 1;}
}

.close {
  position: absolute;
  top: 50px;
  right: 60px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100;
}

.close:hover {
  color: #0590d6;
}
