* {
    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: 30vw;
        margin-bottom: 20px;
       
    }

    /*  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;
        font-size: small;

    }

    .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;
        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;
        font-size:  calc(0.2em + 1vw);

    }
    .contenedor .div_prod a{
        font-size:  calc(0.2em + 1vw);
    }
    .contenedor .div_prod .pr_imagen {
        object-fit: contain;
        width: 100%;
        height: 80%;
        padding: 10px;
    }
    .contenedor .div_prod .pr_imagen:hover{
        scale: 1.2;
        transition: 0.5s;
    }
}