.carouselContainer {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0.5em;
}
.carousel {    
    height: 25em;
    width: 25em;
    overflow: hidden;
    list-style: none;
    display: flex;
    flex-direction: row; 
 }
.slide  {
    height: 100%;
    width: 100%;
    flex: 1 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide img {
    border-radius: 0.5em;
}
.slide .alto {
    width: auto;
    height: 100%;
}
.slide .ancho {
    width: 100%;
    height: auto;
}
.slideArrow {
    position: absolute;
    top: 0em;
    bottom: 0;
    height: 2em;
    border: none;
    width: 1em;
    font-size: 2em;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0.5;
    align-self: center;
}
.slideArrow:hover {
    opacity: 1;
    background-color: transparent;
}
.left {
    left: 0;    
}
.right {
    right: 0;    
}