.container{
    display: flex;
    width: 100%;
    /*height: 100vh;*/
    height: 100%;
    padding: 2% 1%;
    box-sizing: border-box;
    
}

.box{
    /*reduce las imagenes que no se seleccionan*/
    height: 5%;
    flex: 1;
    overflow: hidden;
    margin: 4px;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.50);
    line-height: 0;
    transition: all 600ms;
}

.box > img{
    width: 250%;/*permite el tamaño de todas las imagenes en estado reposo*/
    /*height: calc(100% - 10vh); el -10 permite darle a la imagen una altura del 90% para darle espacio al texto*/
    height: calc(100%);/*porcentaje de la imagen en estado reposo*/
    object-fit: cover;
    transition: all 300ms;
}

/*estilos del texto
.box > span{
    font-size: 35px;
    font-family: sans-serif;
    display: block;
    text-align: center;
    height: 10vh;
    line-height: 2.6;
}
*/

.box:hover{
    flex: 75%;
}

.box:hover > img{
    width: 100%;
    height: 100%;
}