.carousel {
  margin-top: 80px;
}

.mySlide {
  display: flex;
  justify-content: center;
}

.carousel-inner {
    max-height: 650px;
}

.carousel-control-prev, .carousel-control-next {
    max-height: 60px;  
    max-width: 40px;
    top: 45%;  
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0,0,0,0.9);
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: rgba(0,0,0,1);
  }

  .carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }

  .carousel-caption {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-left: 15%; 
    max-width: 40%;
    height: auto; 
    padding: 2%;
 /*   border: 2px solid white;  */
    border-radius: 2px;  
    background-color: rgba(0,0,0,0.6);
    bottom: 52%;
  }

  .carousel-caption h1 {
  /*  letter-spacing: 1px;  */
    color: f1f1f1;
  }

  .carousel-caption p {
    font-family: 'Merienda', cursive;
    font-size: 21px;
    font-weight: 750;
    letter-spacing: 3px;
    color: #f1f1f1;
/*    border: 1px solid #007bff ;  */

    
    
    padding: 1% ;
/*    margin-left: 15%;
    margin-right: 15%;
    border-radius: 5px;
    background-color: #007bff;  */
  }
  
  @media only screen and (max-width: 800px) {    
    .carousel-indicators li {
      width: 10px;
      height: 10px;
      border-radius: 10px;
    }
  }
 
  @media only screen and (max-width: 860px) {
    .carousel-caption {
        bottom: 40%;
    }
  } 

  @media only screen and (max-width: 1040px) {
    .carousel-caption h1 {
      font-size: 26px; 
    }
  }

  @media only screen and (min-width: 861px) and (max-width: 1100px) {
    .carousel-caption {
        bottom: 42%;        
    }  

    .carousel-caption h1 {
      font-size: 30px; 
    }
  }

  @media only screen and (min-width:1101px) and (max-width: 1400px) {
    .carousel-caption {
       bottom: 45%;
    }  

    .carousel-caption h1 {
      font-size: 36px; 
    }
  }