/* Carousel customization */

/* Carousel base class */
.carousel {
  
  margin-bottom: 4 rem;
  background-color: #195594;
  color: #195594;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}


/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
  background-color: #195594;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}

/* Change lines to dots */

.carousel-indicators > li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

h1.carouselTextCaption {
	color: #ffffa8;
}

.btn-carousel {
    font-size: 2 rem;
    font-weight: bold;
}