@import url('https://fonts.googleapis.com/css2?family=Young+Serif&family=Outfit:wght@400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
}
:root {
    --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%);
    --font-serif: 'Young Serif', serif;
    --font-sans: 'Outfit', sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color:var(--stone-100);
    padding: 2rem;
    font-family: var(--font-sans);
}
h1{
    color: var(--stone-900);
    letter-spacing: 1px;
}
h1, h2, h3 {
    font-family: var(--font-serif);
}
h3{
    font-family: "Outfit";
}
h2{
    margin: 0.88rem 0;
}
.main{
    max-width: 650px;
   background-color: var(--white);
    border-radius: 14px;
    padding: 1.88rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.main p ,table{
    color: var(--stone-600);
}
img{
    width: 100%;
    display: block;
    border-radius: 14px;
}
.prepration-time{
    background-color: var(--rose-50);
    border-radius: 13px;
    padding: 2rem;
}
.prepration-time h3{
    color: var(--rose-800);
    margin-bottom: 1rem;
}
.prepration-time span, .instructions span{
    font-weight: 600;
    color: var(--stone-900);
    margin-right: 5px;
}
ul li , ol li{
    font-size: 1rem;
    font-family: "Outfit";
    margin: 10px 0;
    padding-left: 20px;
}

ul li::marker, 
ol li::marker {
    color:var(--brown-800);
    font-weight: bold; 
}
h2{
    color: var(--brown-800);
}
.main ul, .main ol{
    padding-left:1.57rem ;
}
.prepration-time li,.ingredients li,.instructions li{
    color: var(--stone-600);
}
.nusrition table{
    margin-top: 1rem;
    width: 100%;
    border-collapse: collapse;
}
.nusrition table td{
    padding: 0.56rem 1.88rem;
    border-bottom: 1px solid #E0E0E0;
}
.nusrition table td+td{
    color: var(--brown-800);
}
