/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
#carousel {
  margin-top: 70px;
 /* font-family: 'Noto Serif';*/
}
.carousel {
  margin-bottom: -50px;
 /* font-family: 'Noto Serif';*/
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 1;
  padding-bottom: 200px;
}
.carousel-caption h1 {
  font-size: 4em;
  font-weight: 700;  
 }

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 610px;
  background-color:#2a241c;
}
.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 610px;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 768px) {

 /* Navbar positioning foo */
  .navbar-wrapper {
    margin-top: 20px;
    margin-bottom: -90px; /* Negative margin to pull up carousel. 90px is roughly margins and height of navbar. */
  }
  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.4;
  }

}
