@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;
}

: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%);

    --font-family-outfit: 'Outfit', sans-serif;
    --font-family-young-serif: 'Young Serif', serif;

    --font-size-16: 1rem;
    --font-size-20: 1.25rem;
    --font-size-28: 1.75rem;
    --font-size-32: 2rem;
    --font-size-40: 2.5rem;

    --font-weight-400: 400;
    --font-weight-600: 600;
    --font-weight-700: 700;
}

html {
    font-family: var(--font-family-outfit);
    font-size: var(--font-size-16);
    color: var(--Stone-600);
}

body {
    background-color: hsl(30, 54%, 90%);
    overflow-x: hidden;
}

article {
    margin: 8rem auto;
    max-width: 46rem;
    background-color: var(--White);
    padding: 2.5rem;
    border-radius: 24px;
}

img {

    width: 100%;
    height: auto;
    border-radius: 12px;
}

h1 {
    font-family: var(--font-family-young-serif);
    font-size: var(--font-size-40);
    color: var(--Stone-900);
    margin-top: 2.5rem;
}

p {
    line-height: 150%;
    color: var(--Stone-600);
    margin-top: 1.5rem;
}

.fa-clock, .fa-basket-shopping, .fa-utensils {
    color: var(--Rose-800);
    margin-right: 1rem;
}

.prep-time {
    background-color: var(--Rose-50);
    padding: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: .75rem;
}

.prep-time ul {
    list-style-position: inside;
}

.prep-time, li {
    list-style: none;
}

.margin {
    margin-bottom: .5rem;
}

.prep-heading {
    font-weight: var(--font-weight-600);
    color: var(--Rose-800);
    margin-bottom: 1rem;
}

span {
    font-weight: var(--font-weight-700);
}

.heading-h2 {
    font-family: var(--font-family-young-serif);
    font-size: var(--font-size-28);
    color: var(--Brown-800);
    margin-bottom: 1.5rem;
}

hr, .color{
 border-top: 1px solid var(--Stone-150);
}

.ingredients {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.method-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.method-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
}

.method-list i {
    flex-shrink: 0;
    margin-top: 0.2em;
}

.method-list div {
    flex: 1;
}

.nutrition-container {
    margin-top: 2rem;

}

table {
    width: 100%;
}

th {
    text-align: left;
    color: var(--Brown-800);
}

th, td {
    padding: 1rem;
}

.nutrition-para {
    padding-bottom: 1.5rem;
}

.bottom-border {
    border-bottom: 1.6px solid var(--Stone-150);
}


@media screen and (max-width: 767px) {

    body {
        background-color: var(--White);
    }

    article {
        margin-top: -2.5rem;
        border-radius: 0px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    h1 {
        font-size: var(--font-size-32);
    }

    img {
        width: 100vw;
        max-width: 100vw;
        margin-left: -2rem;
        border-radius: 0px;
        display: block;
    }
}