    :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%);
    }
    
    *{
        margin:0;
        padding:0;
        box-sizing: border-box;
    }

    body{
        background: var(--stone-100);
        height:100vh;
        display:flex;
    }

    img{
        height: auto;
        width:100%;
        border-radius:15px;
        margin-bottom: 20px;
    }

    .card{
        width:700px;
        min-height: fit-content;
        background: white;
        padding:30px;
        border-radius:15px;
        margin: auto;
    }

    h1{
        margin-bottom: 10px;
        font-size: 2.5rem;
    }

    h1, h2{
        font-family: "Young Serif", serif;
        font-weight: 400;
        font-style: normal;
    }

    h2{
        color: var(--brown-800);
        font-size: 1.5rem;
    }
    p, li, th, td{
        font-size:16px;
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        color: var(--stone-600);
    }
    p{
        line-height:1.5;
    }

    .attribution {
        font-size: 11px;
        margin-bottom:-19px;
        background: var(--rose-50);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .attribution a {
        color: var(--rose-800);
        padding:auto;
    }

    ul, ol{
        margin-top: 15px;
        margin-left: 23px;
    }

    ul li::marker{
        font-size:12px;
    }

    ol li::marker{
        color:var(--rose-800);
        font-weight: 700;
    }


    li{
        margin-bottom: 7px;
    }

    li p{
        margin-left: 15px;
    }
    


    .preparation-time{
        background-color: var(--rose-50);
        padding:20px;
        border-radius:10px;
        margin-top:20px;
        margin-bottom: 20px;
    }

    hr{
        margin-top:30px;
        margin-bottom:30px;
    }

    .preparation-time h2{
        font-size: 1rem;
        color:var(--rose-800);
    }

    span{
        color:var(--stone-600);
        font-weight:700;
    }

    table, th, td{
        border-bottom: 1px solid var(--stone-150);
        border-collapse:collapse;
    }

    th, td{
        padding: 10px 0;
    }

    th{
        padding-left:20px;
        text-align: left;
    }

    td{
        width:100%;
        padding-left: 222px;
        color:var(--brown-800);
        font-weight:700;
    }

    tr:nth-last-of-type(1){
        border-bottom: hidden;
    }

    footer h2{
        margin-bottom: 12px;
    }
    footer p{
        margin-bottom: 10px;
    }