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

:root {
    --rose-800: #7A284E;
    --rose-50: #FFF7FB;

    --stone-900: #312E2C;
    --stone-600: #5F564D;
    --stone-150: #E3DDD7;
    --stone-100: #F3E5D7;

    --brown-800: #854632;

    --white: #FFFFFF;
}

body, html {
    width: 100dvw;
    height: 100dvh;
    max-width: 100%;
    min-width: 375px;
    background-color: var(--stone-100);
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--stone-600);  

    @media screen and (max-width: 576px) {
        background-color: var(--white);
    }
}

h1 {
    font-family: "Young serif", sans-serif;
    font-size: 2.5rem;
    color: var(--stone-900);
    line-height: 100%;
}

h2 {
    font-family: "Young serif", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--rose-800);
    line-height: 100%;
}

h3 {
    font-family: "Young serif", sans-serif;
    font-size: 1.8rem;
    color: var(--brown-800);
    line-height: 100%;
}


ul, ol {
    width: 100%;

    li {
        line-height: 2rem;
        margin-left: 8px;
        display: grid;
        grid-template-columns: 2rem 1fr;
        align-items: start;
        
        & span {
            margin-right: .3rem;
        }
    }
}
ul {
    list-style: none;
    
    & li::before {
        content: "";
        display: inline-block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        margin-right: 2rem;
        margin-top: .9rem;
    }
}

ol {
    list-style: none;
    counter-reset: instructions;
    
    li {
        margin-bottom: 1rem;
        counter-increment: instructions;
        line-height: 150%;

        &::before {
            display: inline-block;
            content: counter(instructions) ".";
            color: var(--brown-800);
            font-weight: bold;
            margin-right: 2rem;
        }
    }
}

.brown-dot::before {
    background-color: var(--brown-800);
}

.purple-dot::before {
    background-color: var(--rose-800);
}

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

.stone-bold {
    font-weight: 800;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: min(1rem, 8%);

    @media screen and (max-width: 576px) {
        padding: 0;
    }
}

.container {
    width: 736px;
    max-width: 100%;
    min-width: 376px;
    background-color: var(--white);
    padding: min(2.5rem, 5%);
    margin-block: min(7rem, 8%);
    border-radius: 1.5em;    

    @media screen and (max-width: 576px) {
        border-radius: 0;
        padding: 0;
        margin: 0;
    }

    .content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 2rem;
        padding-top: 1rem;

        @media screen and (max-width: 576px) {
            padding: min(2rem, 5%);
        }
    }
    
    .image {
        width: 100%;
        height: 300px;
        border-radius: .8em;
        object-fit: cover;

        @media screen and (max-width: 576px) {
            border-radius: 0;
            height: 171px;
        }
    }

    .stroke {
        width: 100%;
        height: 1px;
        background-color: var(--stone-150);
    }

    .list-container {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: inherit;
        align-items: inherit;
        gap: 1rem;
        border-radius: .8em;
    }

    .preparation {
        background-color: var(--rose-50);
        padding: 1.5rem;
    }

    .table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
                       

        tr td{
            padding-block: 1rem;
            border-bottom: 1px solid var(--stone-150);
        }

        & td:first-child {
            padding-left: 2rem;
        }

        & td:last-child {
            width: 50%;
        }

        & tr:last-child td {
            border: none;
        }
    }
}

.attribution {
    font-size: 11px; text-align: center; 
    & a { 
        color: var(--rose-800); 
        font-weight: 600;
        text-decoration: none;
    }
}
