bodypro{
    background-color: #ed3d3d;
    padding: 0px;
    margin:0px;
    width:100%;
    height:100vh;
    font-family: 'Lato';
}
.envoltura{
    
    left:50%;
    transform: translate(-50%, -50%);
    width:100%;
    max-width: 90%;
    position: relative;
    border: 8px solid brown;
    display: grid;
    grid-template-columns: auto auto;
    height:90%;
    /*display: flex;
    flex-wrap: wrap;
    justify-content: space-between;*/
}
.card{
    flex: 1;
    flex-basis: 45%;
    flex-grow: 0;
    
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0px 4px 7px rgba(0,0,0,.5);
    cursor: pointer;
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    overflow: hidden;
    position: relative;
}
.card img{
    width: 100%;
    height:100%;
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
}
.descriptions{
    position: absolute;
    top:0px;
    left:0px;
    background-color: rgba(255,255,255,.7);
    width:100%;
    height:100%;
    transition: all .7s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
    clip-path: circle(0% at 100% 100%);
}
.card:hover .descriptions{
    left:0px;
    transition: all .7s ease-in-out;
    clip-path: circle(75%);
}
.card:hover{
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    box-shadow: 0px 2px 3px rgba(0,0,0,.3);
    transform: scale(.97);
}
.card:hover img{
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    transform: scale(1.6) rotate(20deg);
    filter: blur(3px);
}
.card h1{
    color: #ff3838;
    letter-spacing: 1px;
    margin: 0px;
}
.card p{
    line-height: 24px;
    height: 70%;
}
.card button{
    width: fit-content;
    height: 40px;
    cursor: pointer;
    border-style: none;
    background-color: #ff3838;
    color:#fff;
    font-size: 15px;
    outline: none;
    box-shadow: 0px 2px 3px rgba(0,0,0,.4);
    transition: all .5s ease-in-out;
}
.card button:hover{
    transform: scale(.95) translateX(-5px);
    transition: all .5s ease-in-out;
}

.titulo {
    
  justify-content: center;
  align-items: center;
    display:contents;
    width:100%;
    height:50px;
    font-size: 1.10rem;
    color: 0;
    font-weight: 400;
    text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  border: none;
 font-family: "Manufacturing Consent", system-ui;
  font-weight: 50;
  font-size:40px;
  color: rgba(255,255,255,1);
  text-decoration: normal;
  text-align: center;
  -o-text-overflow: clip;
  text-overflow: clip;
  white-space: pre;
  text-shadow: 0 0 10px rgba(255,255,255,1) , 0 0 20px rgba(255,255,255,1) , 0 0 30px rgba(255,255,255,1) , 0 0 40px #ff00de , 0 0 70px #ff00de , 0 0 80px #ff00de , 0 0 100px #ff00de ;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}

.titulo:hover {
  text-shadow: 0 0 10px rgba(255,255,255,1) , 0 0 20px rgba(255,255,255,1) , 0 0 30px rgba(255,255,255,1) , 0 0 40px #00ffff , 0 0 70px #00ffff , 0 0 80px #00ffff , 0 0 100px #00ffff ;
}

.platillos{
  
  
  margin:0 auto;
  border: 4px solid blue;
  border-radius: 12px;
  padding: 5px;
  font-weight: bolder;
  font-size:28px;
  color: rgb(1, 56, 14);
}

.imagenespla{
  display: grid;

}
@media (min-width: 1024px) {
    .encapsulado{  
      height: 600px ;
      top:40%;
      
    }
    .card{
        height: 600px;
    }
}

@media (max-width: 1023px) {
    .encapsulado{
       top: 80%;
      height: 1200px; 
      
    }
    .card{
        position: relative;
      height: 600px;
    }
    
}
 @media (min-width: 768px) {
     .encapsulado{
     grid-template-columns: auto auto;
     
      }
        .imagenespla{
    grid-template-columns: auto auto auto auto; 
        }
     .platillos{
  width:70%;    
     }
     
    }
  @media (max-width: 767px) {
      .encapsulado{
     grid-template-columns: auto;
      }
      .imagenespla{
     grid-template-columns: auto auto auto auto; 
      }
      .platillos{
     width:85%; 
      }
    }
  @media (min-width: 1024px) and (max-width: 1360px) {
      .platillos{
     width:95%; 
      }
      .imagenespla{
     grid-template-columns: auto auto auto;
      }
    }
    @media (min-height: 1600px) {
        .imagenespla{
     grid-template-columns: auto auto; 
      }
}
   
  
    