body { 
    flex: 90;
    display: flex;
}

/* Carousel Image Container */
.carousel-item img {
    width: 100%; /* Ensure the width takes up the entire container */
}

/* Slide Description */
html body div#carouselExampleCaptions.carousel.slide div.carousel-inner div.carousel-item.active div.carousel-caption.d-none.d-md-block {
    color: #CFB87C; /* Make text gold */
    background-color: #3c3f41; /* Make background dark gray */
    border: 3px solid #CFB87C; /* Add a solid gold border */
    border-radius: 8px;
    padding: 20px;
}

/* Slide Indicators */
html body div#carouselExampleCaptions.carousel.slide div.carousel-indicators {
    margin-bottom: 25px; /* Move indicator 25px up from original position */ 
}