
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    background-color: #F3E5D8;
    padding: 96px 532px;
    gap: 10px;
    display: flex;
    justify-content: center;
}
.main-content{
    width: 805px;
    height: 1582px;
    border-radius: 24px;
    gap: 24px;
    padding: 32px;
    background-color: #ffff;
     display: flex;
    flex-direction: column;
}
.foodImg{
    width: 742px;
    height: 339.33px;
    border-radius: 15px;

}
h1{
    font-size: 32px;
    line-height: 30px;
    letter-spacing: 0%;
    font-weight: 400;
    font-family: "Young Serif", serif;
    color: #302D2C;
  }
.description{
    font-size: 16px;
    font-weight: 400;
    font-family: "Outfit";
    color: #5F574E;
}
.prep{
    width: 560px;
    height: 155px;
    border-radius: 16px;
    padding: 24px;
    gap: 8px;
    background-color: #FFF5FA;
}
.prep_title{
    font-size: 18px;
    font-weight: 600;
    font-family: "outfit";
    color: #7B284F;
}
.prep_list{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 8px;
    margin-left: 20px;
    margin-bottom: 15px;
}
 .label{
    font-family: "Outfit";
    font-weight: 700;
    font-size: 14px;
     color: #5F574E;
 }
 .value{
    font-family: "Outfit";
    font-weight: 400;
    font-size: 14px;
     color: #5F574E;
 }
.prep_list li::marker,
.ingredients_list li::marker,
.instruction_list li::marker {
  color: #7B284F;
  font-family: "outfit";
  font-weight: 600;
  font-size: 16px;
  padding-left: 8px;
}
h2{
    font-family: "Young serif";
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    color: #854632;

}
.ingredients_list{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 20px;
}
.spacer{
  width: 742px;
  height: 1px;
  border-top: 1px solid #E4DED8;
  margin: 10px 0px;
}
.instruction_list{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left:  20px;
    padding-right: 20px;
  }
.label2{
    font-family: "Outfit";
    font-weight: 600;
    font-size: 14px;
    color: #5F574E;
}
p{
    font-family: "Outfit";
    font-size: 16px;
    font-weight: 400;
    color: #5F574E;
}
table {
  border-collapse: collapse;
  gap: 8px;
}
tr{
    padding: 12px;
    gap: 8px;
}
td {
  font-family: "Outfit";
  font-size: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid #E4DED8; 
  color: #5F574E;
}

td:first-child {
  font-weight: 400;

}

td:last-child {
  font-weight: 600;
  color: #7B284F;
}

@media screen and (max-width: 427px) {
  body {
    width: auto;
    height: 1721px;
    padding: 96px 256px; 
  
  }

  .main-content {
    width: 376px;
    height: 1689px;
  }

  .foodImg {
    width: 315px;
    height: 172px;
  }

  h1 {
    width: 312px;
    height: 60px;
  }

  .description,
  .ingredients_list,
  .instruction_list,
  p
   {
    width: 100%;
    }
  h1,h2{
    margin: 0px 0 0px;
  }
table{
    width: 312px;
    height: 192px;
}
.spacer{
    width: 312px;
}
  .prep{
      width: 312px;
  }
  .prep_list{
    gap:10px;
  }
}