*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    background-color: hsl(330, 100%, 98%);
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-style: normal;
}
:root{
    --Brown-800: hsl(14, 45%, 36%);
    --White: hsl(0, 0%, 100%);
    --Stone-100: hsl(30, 54%, 90%);
    --Stone-150: hsl(30, 18%, 87%);
    --Stone-600: hsl(30, 10%, 34%);
    --Stone-900: hsl(24, 5%, 18%);
    --Brown-800: hsl(14, 45%, 36%);
    --Rose-800: hsl(332, 51%, 32%);
    --Rose-50: hsl(330, 100%, 98%);
    --margin-20 : 20px;
    --margin-30 : 30px;
}
html{
    scroll-behavior: smooth;
}
.container{
    margin: 100px auto;
    width: 50%;
    min-height: 350px;
    background-color:hsl(0, 0%, 100%) ;
    border: 1px solid var(--Rose-50);
    border-radius: 20px;
}
.container .sections{
    margin: 30px;
}
.container .sections .img img{
    width: 100%;
    margin-bottom: 25px;
    border-radius: 10px;
}

/* //////////////////////////////// */

.container .sections .simple{
    margin-bottom: 25px;
}
.container .sections .simple h1{
    margin-bottom: 10px;
    color: var(--Stone-900);
}
.container .sections .simple p{
    color: var(--Stone-600);
}

/* ///////////////////////////////////////// */

.container .sections .preparation-time{
    padding: 20px;
    background-color: var(--Stone-100);
    border-radius: 10px;
    margin-bottom: 25px;
}
.container .sections .preparation-time h3{
    color: var(--Rose-800);
    margin-bottom: 10px;
}
.container .sections .preparation-time ul{
    margin-left: 25px;
}
.container .sections .preparation-time ul li{
    margin: 10px 0px;
}
.container .sections .preparation-time ul li span{
    font-weight: 600;
    color: var(--Stone-900);
}

/* ////////////////////////////////// */

.container .sections .ingredients {
    margin-bottom: 25px;
}
h2 {
    margin-bottom: 10px;
    color: var(--Brown-800);
}
.container .sections .ingredients ul {
    margin-left: 20px;
    color: var(--Stone-600);
}
.container .sections .ingredients ul li {
    margin-bottom: 8px;
    text-decoration: #eee;

}

/* //////////////////////////////////////// */

.container .sections .instructions ,
.container .sections .nutrition {
    margin-top: 20px;
    margin-bottom: 25px;
}
.container .sections .instructions ol{
    margin-left: 20px;
    color: var(--Stone-600);
}
.container .sections .instructions ol li {
    padding: 10px;
}
.container .sections .instructions ol li span {
    font-weight: bold;
    color: var(--Stone-600);
}
.container .sections .instructions ol li::marker {
    font-weight: bold;
    color: var(--Brown-800);
}

/* /////////////////////////////// */

.container .sections .nutrition p {
    margin-bottom: 20px;
    color: var(--Stone-600);
}
.container .sections .nutrition table {
    width: 100%;
    height: 130px;
    border-collapse: collapse;
    margin-bottom: 40px;
}
.container .sections .nutrition table tr {
    border-bottom: .5px solid var(--Stone-150) ;
}
.container .sections .nutrition table tr:last-child {
    border-bottom: none ;
}
.container .sections .nutrition table tr td {
    padding: 10px 15px ;
    color: var(--Stone-600);
}
.container .sections .nutrition table tr .bold {
    font-weight: 700;
    color: var(--Brown-800);
}


/* ///////////////////////// */

@media (max-width:375px){
    .container{
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
    .container .sections{
        margin: 0;
    }
    .container .sections .img img{
        width: 100%;
        border-radius: 0;
        margin: 0;
    }
    .media{
        margin: 20px;
    }
}