h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Adobe Garamond', 'Garamond', 'Times New Roman', serif;
    font-weight: 100;
}

.text-shadow {
    text-shadow: 0 1px 3px #000;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }
}
a:focus {
    outline: none;
}

.navbar-toggler span {
    display: block;
    background-color: #666;
    height: 2px;
    width: 22px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.35s ease-out;
    transform-origin: center right;
}

.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}
  
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(0%, -33%) rotate(-45deg);
}
  
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}
  
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(0%, 33%) rotate(45deg);
}
  
.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}
  
.navbar-toggler span:nth-child(2) {
    opacity: 1;
}
  
.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
}

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

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgb(255, 255, 255, .5);
    border-radius: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 600px;
    margin: auto;
}

/* Declare heights because of positioning of img element */
.carousel-item {
    height: 80vh;
}

.carousel-bgr {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

@media (min-width: 40em) {
/* Bump up size of carousel content */
.carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.featurette-heading {
    font-size: 50px;
}
}

@media (min-width: 62em) {
.featurette-heading {
    margin-top: 7rem;
}
}   