* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    
}

@media (max-width:600px) {
    .titulo{
        margin: auto;
        margin-top: 100px;
    }
    .contenedor {
        margin-top: 100px;
        display: block;
        margin-top:40px;
        margin-left: 30pw;
        
       
    }

    /*  DIV PRODUCTO */
    .contenedor .div_prod {
        width: 219px;
        height: 141px;
        margin-bottom: 20px;
        background-color: beige;
        border: solid 1px red;
        justify-content: center;
        text-align: center;
        align-items: center;

    }

    .contenedor .div_prod .pr_imagen {
        object-fit: fill;
        width: 100%;
        height: 80%;
        padding: 10px;
        transition: all;
    }

}
/*                     PC                */
@media(min-width:601px) {
    
    .titulo{
        margin: auto;
        margin-bottom: 20px;
        
        
        
    }
    .contenedor {
        margin-left: 150px;
        width: 90%;
        height: 90%;
        display: grid;
        grid-template-columns: 1fr 1fr  1fr ;
        grid-template-rows: 1fr 1fr 1fr ;
        gap: 30px;
        margin-bottom: 100px;

    }

    /*  DIV PRODUCTO */
    .contenedor .div_prod {
        width: 219px;
        height: 200px;
        background-color: beige;
        border: solid 1px red;
        justify-content: center;
        text-align: center;
        align-items: center;
        font-size: 12px;
        

    }

    .contenedor .div_prod .pr_imagen {
        width: 100%;
        height: 75%;
        padding: 10px;        
        object-fit: contain;
    }
    .contenedor .div_prod .pr_imagen:hover{
        scale:1.2;
        transition: 1s;
    }
}