h1{
    text-align: center;
}
.container-padre{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 500px;
    flex-wrap: wrap;
    background-image: url(img/sonrisa_negra.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.container-img{
    border: 1px solid white;
    width: 250px;
    height: 350px;
    margin: 10px;
    border-radius: 20px;
}
.container-img img{
    width: 250px;
    border-radius: 20px;
    height: 200px;

}
.text-img p{
    text-align: center;
    color: white;
}

.text-img .down{
    color: black;
}
.text-img .white{
    color: white;
}
@media (min-width: 350px) and (max-width: 700px){
    .container-padre{
    display: flex;
    justify-content: center;
    display: grid;
    grid-template-columns: auto auto;
    background-image: none;
    margin: 0px;
}
.container-img{
    
    width: 180px;
    height: 350px;
    margin: 5px;
     box-shadow: 5px 5px #040404;
    border: 1px solid black;
    
}
.container-img img{
    width: 180px;
    
    height: 130px;
    

}
.text-img p{
    color: #040404;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 800;
}
.text-img .white{
    color: #040404;
}
.text-img{
    margin-top: 30px;
}

}