/* Add your CSS styling here */
.gallery {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin: -10px; /* Adjust spacing between images */
}

.image {
  flex: 0 0 25%; /* Adjust the width of grid items */
  padding: 10px; /* Adjust spacing between images */
}

.image img {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.lightbox-content {
  display: block;
  margin: auto;
  padding-top:2em;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}