.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.gallery-image {
  max-width: 100%;
  max-height: 100%;
  display: none;
}

.gallery-image.active {
  display: block;
}

#previous-btn,
#next-btn {
  margin-top: 10px;
}

/* Additional styles for larger images */
.gallery-image {
  width: auto; 
  height: auto;
}