/* Carousel base class */
.carousel {
  margin-bottom: 1rem;
  height: 35rem;
  background-image: url("../imgs/intro_bg_lake.jpg");
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 11rem;
  right: 12rem;
  z-index: 10;
  color: white;
  font-weight: bold;
}
.carousel-caption h1 {
  font-size: 3rem;
}
/* Declare heights because of positioning of img element */
.carousel-item {
  top: 10rem;
  height: 25rem;
}
.carousel-item > img {
  position: relative;
  left: 59rem;
  top: 5rem;
  width: 8rem;
}
.carousel .overlay {
  position: relative;
  top: 3rem;
  left: 3rem;
  color: darkblue;
  letter-spacing: 1.5px;
}
.carousel .overlay h1 {
  line-height: 2.5rem;
  text-shadow: 1px 1px 2px white;
  font-weight: 700;
}
