#carouselExample {
    /*Ajusta la altura del carrusel aquí*/ 
    height: 400px;
    width: 100%;
  }
  .carousel-item {
    /* Ajusta la altura de las diapositivas aquí */
    height: 400px;
  }
  .carousel-item img {
    /* Aplica la propiedad background-size para ajustar el tamaño */
    background-size: cover;
    background-position: center;   
  }

   /* Estilo Header Acerca de... */

  .imagen-acerca {
    background-image: url('../images/mural.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; height: 20em;
  }

  .acerca-p {
    color:#0149be;
    text-align:center;
    padding-top: 1.5em;
    font-size: 70px;
    text-shadow: 1px 1px 2px #fff;
    font-family: Bonello;
    text-transform: lowercase;
    text-shadow:
    -0.5px -0.5px 0 #fff,  /* Sombra superior izquierda */
     0.5px -0.5px 0 #fff,  /* Sombra superior derecha */
    -0.5px  0.5px 0 #fff,  /* Sombra inferior izquierda */
     0.5px  0.5px 0 #fff;  /* Sombra inferior derecha */
  }

  .acerca-p::first-letter{
    text-transform: uppercase;
  }

  /* #END# Estilo Header Acerca de... */