:root {
    --rose-800: #7A284E;
    --rose-50: #FFF7FB;
    --stone-900: #312E2C;
    --stone-600: #5F564D;
    --stone-150: #E3DDD7;
    --stone-100: #F3E5D7;
    --brown-800: #854632;
    --white: #ffffff;
}

.text-preset-1 {
    font-family: "Young Serif", serif;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
}

.text-preset-2 {
    font-family: "Young Serif", serif;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--brown-800);
    margin-top: 32px;
}

.text-preset-3 {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--rose-800);
    font-weight: 600;
}

.text-preset-4 {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--stone-600);
}

.text-preset-4--bold {
    font-weight: bold;
    color: var(--brown-800);
}

body {
    background: var(--stone-100);
}

.container {
    display: flex;
    justify-content: center;
}

.wrapper {
    border-radius: 24px;
    background: var(--white);
}

@media only screen and (max-width: 600px) {


    .wrapper {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 16px;

    }

    .content {
        padding: 16px;
    }

    .text-preset-1 {
        font-size: 32px;
    }

    .text-preset-2 {
        font-size: 24px;
    }

    .text-preset-3 {
        font-size: 18px;
    }

    .text-preset-4 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .wrapper {
        max-width: 600px;
        padding: 32px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        padding-top: 128px;
        padding-bottom: 128px;
    }

    .wrapper {
        max-width: 650px;
        padding: 40px;
    }
}

.wrapper-img {
    width: 100%;
}

.recipe-image {
    border-radius: 12px;
    width: 100%;
}

.box {
    border-radius: 12px;
    background: var(--rose-50);
    padding: 24px;
    margin-top: 24px;
}

section {
    margin-top: 32px;
}

hr {
    margin-top: 32px;
    margin-bottom: 32px;
    border: none;
    height: 1px;
    background-color: var(--stone-600);
}

ul.preparation-list {
    list-style: none;
    padding-left: 2px;
    margin-bottom: 0;
}

ul.preparation-list li::before {
    content: "•";
    color: var(--rose-800);
    display: inline-block;
    width: 24px;
}

ul.preparation-list li {
    padding-bottom: 8px;
    color: var(--stone-600);
}

ul.instruction-list {
    list-style: none;
    padding-left: 16px;
    margin-bottom: 0;
}

ul.instruction-list li::before {
    content: "•";
    color: var(--rose-800);
    display: inline-block;
    width: 24px;
}

ul.instruction-list li {
    padding-bottom: 8px;
    color: var(--stone-600);
}

ol.instruction-list {
    list-style: none;
    counter-reset: list-counter;
    padding-left: 32px;
}

ol.instruction-list li {
    counter-increment: list-counter;
    padding-bottom: 8px;
    color: var(--stone-600);
    position: relative;
}

ol.instruction-list li::before {
    content: counter(list-counter) ".";
    color: var(--brown-800);
    position: absolute;
    left: -2em;
    width: 24px;
    display: inline-block;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.nutrition-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--stone-150);
}