#carouselApp,
#carouselAuthor {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    max-width: 500px;
}

.carousel-item {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
}

.carousel-item.active {
    display: flex;
}

.carousel-item h5 {
    color: #a0a0a0;
    font-weight: bold;
}

.carousel-item p {
    color: #a0a0a0;
}

.carousel-item span {
    color: #f5c518;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #386560;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.carousel-control-prev {
    left: -50px;
    /* flecha izquierda fuera del carrusel */
}

.carousel-control-next {
    right: -50px;
    /* flecha derecha fuera del carrusel */
}