

#visor_imagenes
{
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 0;
}

.image-slider {
    position: relative;
    width:500px;
    /*height auto*/
    overflow: hidden;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.imagen-slider img {
  
    width: 400px;
    object-fit:scale-down;
    border-radius: 10px;
}
.control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

.control-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}