.carousel-item img {
  animation-name: example;
  animation-duration: 5s;
  /* animation-delay: 2s; */
  animation-fill-mode: forwards;
  width: 100vw;
  height: 100vh;
}

.carousel-item {
  animation: fadeIn;
}

.carousel-fade {
}

@keyframes example {
  0% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(1.2, 1.2);
  }
}
.carousel-caption {
  top: 35%;
}

.carousel-caption h1 {
  font-size: 50px;
  color: rgb(255, 255, 255);
}
.carousel-caption p {
  font-size: 22px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
