*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background-color:#F0EAD6;
    color: #645452;
    min-height: 100vh;
    font-family: 'outfit' , sans-serif;
    line-height: 1-4;
    display: grid;
    place-content: center;
}
img{
    width: 100%;
    display: block;
}
h1,h2{
    font-family: 'young  serif',serif;
    font-weight: 400;
}
h1{
    color: #333333;
    font-size: 44px;
}
h2{
    color: #83654e;
    margin-bottom: 16px;
}
.recipe-step{
    margin: 16px;
}
.nutritions-step{
    margin-top: 16px;
}
ul{
    padding-left: 20px;
}
ul li::marker{
    color: #83654e;
    font-weight: bold;
}

ul li{
    margin-bottom: 10px;
}
ul li span{
    color: #645452;
    margin-left: 16px;
    font-weight: 700;
}
hr{
    margin: 24px;
    border: 1px solid lightgray;
}
.container{
    max-width: 800px;
    background-color: white;
    margin: 32px;
    border-radius: 16px;
}
.container .recipe-img{
    padding: 32px;
    border-radius: 16px;
    overflow: hidden;
}
.container .recipe-img img{
    border-radius: 16px;
}
.recipe-information{
   padding:0rem 2rem 2rem 2rem;
}
.decription{
    margin: 1.5rem;
}
.recipe-prep-time{
    background-color: #f8f1f5;
    padding: 24px;
    border-radius: 16px;
}
.recipe-prep-time h3{
    color: #872657;
    margin-bottom: 12px;
}

.recipe-prep-time ul li::marker{
    color: #872657;
}
.ingredients li{
    margin-bottom: 8px;
}

.ingredients li span{
    font-weight: initial;

}

.instruction .item{
    padding-left: 8px;
    margin-bottom: 8px;
    display:flex;
}

.instruction .item .num{
    color: #83654e;
    margin-right: 8px;
    font-weight: 700;
}


.instruction .item p span{
    font-weight: 700;

}

.nutritions-step .values{
    margin-bottom: 16px;
}

.nutrition-table .items{
    padding: 12px 32px;
    display: flex;
    border-bottom: 1px solid lightgrey;
}
.nutrition-table .items:last-child{
    border-bottom: 0px;
}
.nutrition-table .items p:nth-child(2){
    color: #83654e;
    font-weight: 700;
}

.nutrition-table .items > * {
    width: 100px;
    margin-right: auto;
}

@media(max-width:540px){
    h1{
        margin-top: 32px;
    }
    .container{
        margin:0px;
    }

    .container .recipe-img{
        padding: 0px;
        border-radius: 0px;
    }

    .container .recipe-img img{
        border-radius: 0px;
    }
}