/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  padding-bottom: 40px;
  color: #5a5a5a;
}

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

/* Carousel base class */
.carousel {
  margin-bottom: 10px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
  text-shadow: 2px 2px 2px #000;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  max-height: 450px;
  background-color: #777;
}
.carousel-inner > .item > img {
  position: relative;
  top: 0;
  left: 0;
  min-width: 100%;
  max-height: 450px;
}

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


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

@media (min-width: 768px) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 24px;
    
  }
}

@media (min-width: 480px) and (max-width: 767px) {
	.carousel-caption p {
		font-size: 18px;
	}
}

@media (max-width: 479px) {
	.carousel-caption  h1 {
		font-size: 18px;
	}

	.carousel-caption  p {
		font-size: 14px;
	}
}