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



body{
    min-height: 100vh;
    background-color: hsl(30, 54%, 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 0;
}

.card{
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 100%);
    width: 660px;
    max-width: 90%;
    height: max-content;
    border-radius: 24px;
    padding: 40px;
    

}

.card img{
    width: 100%;
    border-radius: 12px;
    height: 300px;
    margin-bottom: 40px;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

hr{
    border-width: 0.5px;
    grid-area: hr;
}

h1{
    font-family: 'Young Serif';
    color: hsl(24, 5%, 18%);
}

p, ul, ol{
    font-family: 'Outfit';
    font-size: 14px;
    color: hsl(30, 10%, 34%);
}

ul{
    list-style: inside;
}

ol{
    list-style: decimal inside;
}

li{
    padding-top: 16px;
}


.prep-time{
    width: 100%;
    background-color: hsl(330, 100%, 98%);
    border-radius: 12px;
    padding: 28px;
}

.prep-time h3, .prep-time li::marker{
    color: hsl(332, 51%, 32%);
    font-family: 'Outfit';
    font-weight: 600;
}


h2, .ing li::marker, .inst li::marker{
    color: hsl(14, 45%, 36%);
    font-weight: 600;
}


.nut p{
    margin: 24px 0 24px 0;
}

table {
    border-collapse: collapse;
    width: 100%;
}
  
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-family: 'Outfit';
    font-size: 14px;
    color: hsl(30, 10%, 34%);
    padding-left: 24px;
}

tr td:nth-child(2) {
    font-weight: 600;
    color: hsl(14, 45%, 36%);
}