@media(max-width: 1024px){

    .imgContainer{
        min-width: 500px; 
    }
    img{
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

@media(max-width: 724px){
    .imgContainer{
        min-width: 200px; 
    }
 img{
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

@media(max-width: 425px){
    .imgContainer{
        min-width: 50px; 
    }
    img{
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}