* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

: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%);
}
body {
    background-color: var(--stone-100);
    color: var(--stone-900);
    font-family: 'Young Serif', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 500px;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 95rem;
}

.recipe-img img {
    width: 100%;
    border-radius: 10px;
}

h1, h2, h3 {
    font-family: 'Young Serif', serif;
    font-weight: 400;
}

h1 {
    font-size: 2rem;
    color: var(--stone-900);
}

h2 {
    color: var(--rose-800);
    margin-bottom: 1rem;
}

h3 {
    color: var(--brown-800);
    margin-bottom: 1rem;
}

p {
    color: var(--stone-600);
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
}

ul {
    padding-left: 1.5rem;
    list-style: none;
}


ul li::before {
    content: "\2022";
    color: var(--brown-800);
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1rem;
}

.instructions .item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.instructions .num {
    color: var(--brown-800);
    font-weight: bold;
}

.nutrition-table {
    margin-top: 1rem;
}
.nutrition-table .item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--stone-150);
}
.nutrition-table .item:last-child {
    border-bottom: none;
}

.nutrition-table .item p:nth-child(2) {
    font-weight: bold;
    color: var(--brown-800);
}
.hr{
    color: var(--brown-800);
    size: 1rem;
}

@media (max-width: 1815px) {
    .container {
        padding: 1rem;
    }
}