.meals{
  padding: 9rem 0;
}
.meal-img{
  width: 100%;
}
.meal-title{
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.4rem;
}
.meal-details{
  display: flex;
  flex-direction: column;
  gap:2rem;
}
.meal-detail{
  font-size: 1.8rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.meal-icon{
  height: 2.4rem;
  width: 2.4rem;
  color:#e67e22;
}
.meal ul{
  list-style-type: none;
}
.Category{
  display: inline-block;
  font-size: 1.2rem;
  color:#333 ;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.veg{
  background-color: #69db7c;
}
.vegan{
  background-color: #69db7c;
}
.paleo{
  background-color: #ffd43b;
}
.meal-content{
  padding:3.6rem 4.6rem 4.6rem 4.6rem;
}
.meal{
  box-shadow: 0 1.2rem 2.4rem rgb(0,0,0,0.075) ;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s;
  line-height: 2rem;
}
.meal:hover{
  transform: translateY(-1.6rem);
  box-shadow: 0 2.4rem 4.8rem rgb(0,0,0,0.06) ;

}
.Categories{
  display: flex;
  gap: 5px;
}
.list{
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.8rem;
  color: #555;
}
.list-item{
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.diet-icon{
  height: 3rem;
  width: 3rem;
  color: #e67e22;
}
.all-recepies{
  font-size: 1.8rem;
  text-align: center;
  margin-top: 4rem;
}
.link:link,
.link:visited{
  display: inline-block;
  text-decoration: none;
  color: #e67e22;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: all 0.3s;
}
.link:hover,
.link:active{
  border-bottom: 1px solid transparent;
}
