@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    font-family: var(--OUFIT);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--WHITE);
}
: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: hsl(14, 45%, 36%);
    --ROSE-800: hsl(332, 51%, 32%);
    --ROSE-50: hsl(330, 100%, 98%);
    --OUFIT: "Outfit", serif;
    --YOUNG-SERIF: "Young Serif", serif;
}
.attribution a { 
    color: rgb(155, 85, 155);
    text-decoration: none;
}
.section-one-p,
.section-two,
.section-three{
    padding: 0 2.5rem;
}
.section-one img{
    display: block;
    width: 100%;
    margin-bottom: 3rem;
}
.section-one__text h1{
    font-size: 3rem;
    line-height: 1em;
    font-weight: normal;
    width: 25rem;
    font-family: var(--YOUNG-SERIF);
    margin-bottom: 2rem;
    color: var(--STONE-900);
}
p,li{
    font-size: 1.6rem;
    color: var(--STONE-600);
}
ul,ol{
    list-style-position: inside;
}
.section-one__text p{
    width: 31.5rem;
}
.section-one__text{
    margin-bottom: 2.5rem;
}
.section-one__prep{
    background-color: var(--ROSE-50);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 4rem;
}
.section-one__prep h3{
    font-size: 2rem;
    color: var(--ROSE-800);
    margin-bottom: 1.4rem;
}
.section-one__prep ul li{
    width: 20rem;
    padding-left: 2em;
    text-indent: -1.4em;
    margin-bottom: 1rem;
}
span{
    font-weight: bold;
    color: var(--STONE-900);
}
li::marker{
    color: var(--ROSE-800);
    font-weight: bold;
}
h2{
    font-size: 2.5rem;
    color: var(--BROWN);
    font-family: var(--YOUNG-SERIF);
    font-weight: normal;
    margin-bottom: 1.5rem;
}
.section-one__items li{
    margin-bottom: 1rem;
    padding-left: 2em;
    text-indent: -1.4em;
    margin-bottom: 1rem;
}
.section-one::after{
    border-bottom: 2px solid var(--STONE-150);
    width: 80%;
    min-width: 32rem;
    display: block;
    content: "";
    margin: 3rem auto;
}
.section-two ol li{
    padding-left: 2em;
    text-indent: -2em;
    margin-bottom: 1rem;
    padding-right: 2rem;
}
.section-two::after{
    display: block;
    content: "";
    width: 80%;
    min-width: 32rem;
    border-bottom: 2px solid var(--STONE-150);
    margin: 3rem auto;
}
.section-three p{
    margin-bottom: 3rem;
}
.nutri-table{
    display: flex;
    align-items: flex-start;
    padding-left: 2rem;
    width: 33rem;
    position: relative;
}
.border{
    min-width: 32rem;
    border-bottom: 1px solid var(--STONE-150);
    margin-bottom: 2rem;
}
.bold{
    position: absolute;
    left: 50%;
    align-self: flex-end;
    color: var(--BROWN);
    font-weight: bold;
    font-size: 1.7
    rem;
}
.nutri-table p{
    margin-bottom: 2rem;
}
.attribution{
    display: flex;
    align-items: center;
    margin: 2rem auto;
    gap: 1rem;
    font-size: 11px;
}
.attribution p{
    width: fit-content;
}
b{
    margin-left: 1.5rem;
}
@media (min-width: 600px) {
    .section-one__text h1{
        width: fit-content;
    }
    .section-one__text p{
        width: 90%;
    }
    .section-one__prep ul li{
        width: fit-content;
    }
    .section-one::after,.section-two::after{
        min-width: 56rem;
    }
    .nutri-table{
        width: 100%;
    }
}
@media (min-width: 1440px) {
    html{
        height: 100%;
    }
    body{
        height: 100%;
        background-color: var(--STONE-100);
        padding: 6rem 0;
    }
    article{
        max-width: 700px;
        margin: 0;
        height: 165rem;
        background-color: var(--WHITE);
        border-radius: 2rem;
    }
    .section-one-p,
    .section-two,
    .section-three{
        padding: 0 3rem;
    }
    .section-one img{
        padding: 3rem;
        border-radius: 4rem;
        margin-bottom: 0;
        margin-top: 8rem;
    }
    .section-one__text p{
        width: 60rem;
    }
    .section-one::after,.section-two::after{
        width: 60rem;
    }
}