.carousel-container .carousel-item {
  height: 70vh;
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 70vh;
}

.carousel-item {
  position: relative;
}

.carousel-item .title {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  margin-left: auto;
  margin-right: auto;
  color: white !important;
  max-width: 50%;
}

.carousel-item .title .text-container {
  background: rgba(145, 199, 136, 0.8);
}

.carousel-background {
  width: 100%;
  height: 100%;
}

.carousel-item .title h1 {
  font-family: "ABeeZee", sans-serif;
  font-size: 5rem !important;
  color: white !important;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}
@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}
.carousel-inner .carousel-item .carousel-background {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

@media (max-width: 600px) {
  .carousel-item .title h1 {
    font-size: 2.5rem !important;
  }
}
