* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (min-width:601px) {

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        background-color: white;
        margin-top: 120px;
        max-width: 1200px;
        
    }

    .titulo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contenedor {
        margin-left: 140px;
        width: 100%;
        height: 90%;
        display: grid;
        grid-template-columns: 1fr 3fr ;
        grid-template-rows: 1fr1 1fr;
        gap: 30px;
    }

    /*  DIV PRODUCTO */
    .contenedor .div_prod {

        width: 30%;
        height: 50vh;
        background-color: beige;
        border: solid 1px red;
        justify-content: center;
        text-align: center;
        align-items: center;
          
    }

    .contenedor .div_prod .pr_imagen {
        width: 100%;
        height: 100%;
        padding: 10px;
        object-fit: fill;
    }
}
.div_prod2{
    width: 80%;
    height: 90%;
    
    justify-content: center;
    text-align: center;
    align-items: center; 


}
#vd1{    
    
    position: relative;
    aspect-ratio: 16/9;
    width: 40rem;
    height: 99%; 
}
/*               CELULAR          */
@media screen and (max-width:600px) {
    body {
        
        width: 100vw;
    }

    .titulo {
        margin-left:40px;
        margin-top: 40px;

    }

    .contenedor {
        display: block;        
        margin-left:40px;
        margin-top: 10px;        
        width: 50%;
        height: 50%;
        margin-bottom: 9em; 
        
    }
    .div_prod{
        display: block;
        width: 80%;
        text-align: center;
       
    }
    .contenedor .div_prod img{
        
        width: 50%;
        height: 50%;
        margin-bottom: 50px;
        padding: 0;
        margin: 0;
        
    }
    .div_prod2{
        display: block;
        position: relative;
        width: 100%;       
        padding-bottom: 0em;
    }
    #vd1{
      position: absolute;
      top:0;
      left: 0;
      width: inherit;
    }
    #prr1{
        position: absolute;
        bottom: -1em;
        left: 7em;
    }
}