*{
    margin: 0;
    padding: 0;
box-sizing: border-box;
}

:root{
    --whiteClr: hsl(0, 0%, 100%);
    --stoneClr100: hsl(322, 53%, 90%);
    --stoneClr150: hsl(30, 18%, 87%);
    --stoneClr600: hsl(30, 10%, 34%);
    --stoneClr900: hsl(24, 5%, 18%);
    --brownClr800: hsl(14, 45%, 36%);
    --roseClr800: hsl(332, 51%, 32%);
    --roseClr50: hsl(330, 53%, 93%);

    --firstFont: "Young Serif", serif;
    --secFont:"Outfit", serif;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--roseClr50);
    flex-wrap: wrap;
    padding-top: 50px;
  
}
main{
    background-color:var(--whiteClr) ;
    border:0px ;
    border-radius: 10px;
    width: 665px;
    /* height: 900px; */
    padding: 30px ;
}

.container img{
   max-width: 100%;
   border-radius: 8px;
}
.head h1{
    margin-top: 20px;
    margin-bottom: 12px;
    font-family: var(--firstFont);
    color: var(--stoneClr900);
    font-weight: 400;
}
.head p{
    font-family: var(--secFont);
    color: var(--stoneClr600);
    font-size: 15px;
    line-height: 1.5rem;
}
.list h2{
    padding-left: 30px;
    padding-bottom: 10px;
    margin-top: 30px;
    font-size: 20px;
    font-family: var(--firstFont);
    font-weight:400 ;
    color: var(--roseClr800);

    
}

.list ul{
    padding-left: 52px;
    font-size: 15px;
    font-family: var(--secFont);
    font-weight: 400;
    color: var(--stoneClr600);
   line-height: 1.5rem;
}
.list b {
    padding-left:12px ;
}

.ingredent h2{
    padding-left: 8px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--firstFont);
    font-size: 28px;
    font-weight: 500;
    color: var(--brownClr800);
}
.ingredent ul{
    padding-left: 28px;
  
}
.ingredent ul li{
    margin-bottom: 8px;
    font-family: var(--secFont);
    font-weight: normal;
    font-size: 16px;
    color: var(--stoneClr900);
    line-height: 1.6;

}

hr{
    
    margin-top: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid hsl(30,18%, 87%);
    
}

.instruction h2{
    font-family: var(--firstFont);
    font-weight: 400;
    color: var(--brownClr800);
    margin-bottom: 20px;
}

.instruction ol {
    padding-left: 25px;
    font-family: var(--secFont);
    font-size: 16px;
    line-height: 1.6;
    color: var(--stoneClr600);
}

.nutrition h2{
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: var(--firstFont);
    font-weight: 400;
    color: var(--brownClr800);
}

.nutrition p{
    font-family: var(--secFont);
    font-size: 16px;
    color: var(--stoneClr600);
    margin-bottom: 15px;
}
.nutrition {
    font-family: var(--secFont);
    color: var(--stoneClr600);
    font-size: 16px;

}

.nutrition ul li{
 display: flex;   
 align-items: center;
 justify-content: space-around;
 border-bottom: 1px solid hsl(30,18%, 87%) ;
 padding: 1rem;
}
.nutrition span{
    font-weight: 600;
    color: var(--brownClr800);
}
