body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 20px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.basicLightbox {
  background: rgba(0, 0, 0, 0.8);
}
.basicLightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 5px;
}
