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