*{
    box-sizing: border-box;
}

body{
    background-color: hsl(30, 54%, 90%);
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    max-width: 45rem;
    padding: 1.5rem 0rem 1.5rem 0rem;
    border-radius: 1.5rem;
    background-color: hsl(0, 0%, 100%);
    margin-block: 2.5rem;
}

img{
    max-width: 100%;
    border-radius: 0.7rem;
}

.image{
    padding: 0rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1, h2{
    font-family: 'Young Serif';
    font-weight: 400;
}

ul, ol, p, table{
    font-family: 'Outfit';
    font-size: 1rem;
}

h3{
    font-weight: 600;
    font-family: 'Outfit';
}

h2, h3{
    color: hsl(332, 51%, 32%);
    margin-bottom: 0.8rem;
}

.content{
    padding: 0rem 3rem 0rem 2.5rem;
}

.bold-text{
    font-weight: 600;
}

h3{
    margin-block: 0;
}

ul, ol{
    margin-top: 0;
}

.Ingredients{
    line-height: 2;
}

.Ingredients li{
    color: hsl(332, 51%, 32%);
    padding-left: 1rem;
}

.Ingredients span{
    color: black;
}

.preparation-div{
    background-color: hsl(330, 100%, 98%);
    line-height: 2;
    padding: 0.8rem;
}

.preparation-div li{
    color: hsl(332, 51%, 32%);
    padding-left: 1rem;
}

.preparation-div span{
    color: black;
}

li{
    margin: 0.5rem 0px;
}

ol{
    line-height: 1.5;
    counter-reset: num; 
    padding-left: 5px;
}

ol li{
    counter-increment: num; 
    list-style: none;
    padding-left: 2em;
    text-indent: -2rem;  
}

ol li::before { 
    content: counter(num) ". "; 
    color: hsl(332, 51%, 32%); 
    font-weight: 600;
    margin-right: 1rem;
} 

ol span{
    font-weight: 600;
}

hr{
    border: 1px solid hsl(30, 18%, 87%);
}

table{
    width: 100%;
    
}

table, tr, td{
    border-bottom: 1px solid hsl(30, 18%, 87%);
    border-collapse: collapse;
    padding: 1rem;
}

table, tr, .last-row{
    border-bottom: none;
}

.value{
    color: hsl(332, 51%, 32%);
    font-weight: 700;
}

p, span, h2, h3, h1, li, td{
    opacity: 0.9;
}

@media (max-width : 550px){
    body{
        background-color: transparent;
        padding: 0;
        margin: 0;
    }

    main{
        padding: 0;
    }

    .container{
        padding: 0;
        max-width: 100vw;
        border-radius: 0px;
        margin: 0;
    }

    .content{
        padding: 0rem 1rem;
    }

    .image{
        padding: 0;
        border-radius: 0px;
    }

    img{
        border-radius: 0px;
    }

    ul, ol, p, table{
        font-size: 0.85rem;
    }

    h2{
        font-size: 1.35rem;
    }

    h3{
        font-size: 1rem;
    }

    h1{
        font-size: 1.85rem;
    }
}
