* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

:root {
    --body-bg: hsl(30,54%,90%);
    --card-bg: hsl(0,0%,100%);
    --Rose800: hsl(332, 51%, 32%);
    --Rose50: hsl(330, 100%, 98%);
    --Stone-600: hsl(30, 10%, 34%);
    --Stone-900: hsl(24, 5%, 18%);
    --Brown-800: hsl(14, 45%, 36%);
}

body {
    background-color: var(--body-bg);
    font-family: 'Young Serif', 'Outfit', serif;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}
body.use-outfit {
    font-family: 'Outfit', 'Young Serif', sans-serif;
}

.card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;

    text-align: left;
    flex-direction: column;
    
}

img {
    display: block;
    object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    height: auto;
}
h1{
    margin: 20px 0px;
    direction: ltr;
    text-align: left;
}
p {
    color: var(--Stone-600);
    font-family: 'Outfit',sans-serif;
}

.prep {
    margin: 20px 0px;
    padding: 20px;
    border-radius: 1rem;
    font-family: 'Outfit',sans-serif;
    color: var(--Rose800);
    background: var(--Rose50);
}

.prep ul{
    color: var(--Stone-600);
    list-style-position: disc;
    margin-top: 10px;
    padding-left: 20px;
}

.prep li{
    padding-left: 20px;
    margin: 10px;
}


h2 {
    color: var(--Brown-800);
}

.ingr {
    font-family: 'Outfit',sans-serif;
    color: var(--Stone-600);
    list-style-type: disc;
    margin-top: 10px;
    padding-left: 20px;
}

.ingr li{

    margin: 10px;
    padding-left: 20px;
}

strong {
    color: var(--Stone-900);
}

hr {
    border-top: 2px var(--Stone-600);
    margin: 20px;
}

.inst {
    color: var(--Stone-600);
    font-family: 'Outfit',sans-serif;

    margin-top: 10px;
    padding-left: 20px;
}



.inst li{
    margin: 10px;
    padding-left: 20px;
}

ol li::marker {
    color: var(--Brown-800); 
    font-weight: bold;
}

table{
    margin: 20px;
    font-family: 'Outfit',sans-serif;
    border-collapse:collapse ;
}

td{
    padding: 8px;
    text-align: left;
}

tr {
    border-bottom: 1px solid var(--Stone-600);
}

tr:last-child{
    border-bottom: none;
}

td:nth-child(1){
    color: var(--Stone-600);
}

td:nth-child(2){
    font-weight: bold;
    color: var(--Brown-800);
}