/* Style Guide */

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

::marker{
    color: var(--rose-800);
}

li{
    margin-left: -20px;
    padding-left:18px  
}



/*Typography*/

.labels{
    color: var(--brown-800);
    font-family: "Young Serif";
    font-size: 1.75em;
    line-height: 100%;
    letter-spacing: 0px;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 0px;
}
.bold{
    font-weight: 700;
}
.preparation-time-label{
    color: var(--rose-800);
    font-size: 1.25em;
    line-height: 100%;
    letter-spacing: 0px;
}

.recipe-label{
    color: var(--stone-900);
    font-family: "Young Serif";
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 24px;
}
.stone-600-font-color{
    color: var(--stone-600);
}
.brown-800-font-color{
    color: var(--brown-800);
}
/* Main styles */

body{
    display: flex;
    margin: 0px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family:'Outfit';
    background-color: var(--stone-100);
    font-size: 1em;
    line-height: 150%;
    background-image: linear-gradient(to bottom, var(--rose-50), .7px, transparent .7px),
    linear-gradient(to right, var(--rose-50) .7px, transparent .7px);
    /* background-image: radial-gradient(var(--rose-50) 5%, transparent 0); */
    
    background-size: 35px 35px;
}

.recipe-container{
    display:flex;
    flex-direction: column;
    max-width: 736px;
    padding: 40px;
    border-radius: 24px;
    background-color: var(--white);
    gap:16px
    
}

.hero-img{
    border-radius: 12px;
    width: 100%;
}

.preparation-container{
background-color: var(--rose-50);
border-radius: 12px;
padding: 12px 24px;
}

.divider{
    color: var(--stone-150);
    width: 100%;
    size: 1px;
    opacity: .25;
}

.instructions-list li::marker{
    color: var(--brown-800);
    font-weight: 800;
}

table{
border-collapse: collapse;
}
table td{
    border-bottom: 1px solid var(--stone-150);
    padding-top: 6px;
    padding-bottom: 12px;
}



@media(max-width:400px){
    body {
        align-items: flex-start;
        
    }

    .recipe-container{
        padding: 32px;
        border-radius: 0px;
        margin: 0px;
    }

    .hero-img{
        margin-top: -32px;
        border-radius: 0px;
        width: calc(100% + 64px); 
        margin-left: -32px;
      
    }

  
   
}