/* -----------------font------------------- */
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/*----------------------------------------- */


/* -----------------set up----------------- */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --Stone100 : hsl(30, 54%, 90%);
    --Stone150 : hsl(30, 18%, 87%);
    --Stone600 : hsl(30, 10%, 34%);
    --Stone900 : hsl(24, 5%, 18%);

    --Brown800 : hsl(14, 45%, 36%);

    --Rose800 : hsl(332, 51%, 32%);
    --Rose50 : hsl(330, 100%, 98%);
}
/*----------------------------------------- */

/*----------------content------------------ */
body{
    background-color: var(--Stone100);
}
main{
    height: 98vh;
    display: flex;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 30px;
}
.card{
    background-color: white;
    border-radius: 20px;
    height: fit-content;
    width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
@media screen and (max-width: calc(800px *2)) {
    .card{
        width: 100%;
        margin-top: 0;
        max-width: 100vh;
    }
    
}
.content, .card{
    padding: 30px;
}
.content{
    padding-top: 0;
}
hr{
    margin: 20px 0;
    opacity: 0.3;
    width: 100%;
}

#omelette{
    border-radius: 10px;
}


/* title */
h1, h2, h3{
    margin: 16px 0;
}
h2{
    color: var(--Brown800);
}
h3{
    color: var(--Rose800);
}
h1, h2{
    font-family: "Young Serif", serif;
    font-weight: 400;
}



.preparation{
    background-color: hsl(332, 51%, 95%);
    padding: 20px;
    padding-top: 0;
    border-radius: 10px;
}

.brown{
    color: var(--Brown800);
    font-weight: 900;
    margin-right: 300px;
}

/* lists ::marker */

.preparation-list li::marker{
    color: var(--Rose800);
}
.margin-left{
    margin-left: 20px;
}
.ingredients-list li::marker, .instructions-list li::marker{
    color: var(--Brown800);
}
.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
}