.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1); /* Adjust transparency */
  backdrop-filter: blur(1px);
  z-index: 1;
}

.carousel-caption {
  position: relative;
  z-index: 2; /* Ensures text is above the blur */
}

.moment-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2); /* Center and zoom */
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit:contain;
}

.moment-container {
  height: 80vh;
  overflow: hidden;
  position: relative;
}