@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

: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%);
}

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


body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--Stone-100);
    color: var(--Stone-900);
}

h1,
h2,
h3 {
    font-family: 'Young Serif', serif;
    font-weight: 400;
}

h2 {
    color: var(--Brown-800)
}

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

img {
    width: 630px;
    border-radius: 16px;
}


.container {
    margin: 40px auto auto auto;

    background-color: var(--White);
    border-radius: 20px;
    width: 690px;
    padding: 30px;
}




.preparation-time {
    background-color: var(--Rose-50);
    padding: 10px 20px;
    border-radius: 15px;
    margin-top: 40px;
}

.preparation-time>p {
    color: var(--Rose-800);
    font-weight: bold;
    font-size: 16px;
}

ul {
    margin-left: -15px;
}

.preparation-time li {
    margin-bottom: 10px;
}

/* ==================================== */
.preparation-time div span:nth-child(1) {
    margin-left: 5px;
    color: var(--Stone-600);
    font-weight: bold;
}

.preparation-time ul {
    margin-left: -15px;
}

.preparation-time div span:nth-child(2) {
    color: var(--Stone-600);
}

/* ================================= */


/* ============================================= */
li span:nth-child(1) {
    font-weight: 600;
}

.Ingredients div,
.prep div {
    margin-bottom: 10px;
    position: relative;
    margin-left: 5px;

}

.Ingredients div {
    color: var(--Stone-600);
}

.Ingredients div:before,
.prep div:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--Brown-800);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translate(-50%, -50%);


}



.hr {
    width: 100%;
    height: 1px;
    background-color: #eee;
}

h2+ol {
    margin-left: -7px;
    margin-bottom: 30px;
}

ol li {
    font-weight: bold;
    font-family: "Roboto Mono", monospace;
    color: var(--Brown-800);
    margin-bottom: 10px;
}

ol li span {
    color: var(--Stone-600);
    font-family: 'Outfit', sans-serif;


}

ol li span:nth-child(1) {
    font-weight: bold;
    color: var(--Stone-600);
}

ol li span:nth-child(2) {
    color: var(--Stone-600);
    font-weight: 100;
}

.nutrition p {
    margin-bottom: 30px;
}

.nutrition .hr {
    margin: 15px auto;
}

.tol {
    position: relative;
    height: 25px;
}

.tol span:nth-child(1) {
    position: absolute;
    left: 30px;
}

.tol span:nth-child(2) {
    position: absolute;
    left: 320px;
    color: var(--Brown-800);
    font-weight: bold;

}

.four {
    margin-bottom: 20px;
}

@media (max-width:768px) {
    body {
        /* overflow-x: hidden; */
        background-color: var(--White);
    }

    * {
        margin: 0;
        padding: 0;

    }

    .container {
        width: 100%;
        margin-top: 0;
        border-radius: unset;
    }

    img {
        width: calc(100% + 60px);
        border-radius: unset;
        margin-top: -40px;
    }

    h1 {
        font-size: 7vw;
        margin: 4vmin auto;
    }

    /* .tol span:nth-child(1) {
        position: static;
    }

    .tol span:nth-child(2) {
        margin-left: 0;
        position: static;
    } */

    .preparation-time p {
        margin-bottom: 10px;
    }

    .preparation-time ul,
    ul {
        margin-left: 25px;
    }

    h2 {
        margin: 20px auto;
    }

    .hr {
        margin: 15px auto;
    }

    ol li {
        margin-left: 40px;
    }

    .tol span:nth-child(1) {
        left: 10%;
    }

    .tol span:nth-child(2) {
        left: 55%;
    }


}