html {
    box-sizing: border-box;
    font-size: 16px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}



/*_________PROJECT STYLES_________*/

:root {
    --color-white: hsl(0, 0%, 100%);
    --color-stone-100: hsl(30, 54%, 90%);
    --color-Stone-150: hsl(30, 18%, 87%);
    --color-stone-600: hsl(30, 10%, 34%);
    --color-Stone-900: hsl(24, 5%, 18%);
    --color-brown-800: hsl(14, 45%, 36%);
    --color-rose-800: hsl(332, 51%, 32%);
    --color-rose-50: hsl(330, 100%, 98%);
}


body {
    font-family: "Figtree", sans-serif;
    background: hsl(30, 54%, 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.recipe-box {
    max-width: 700px;
}

.recipe-box h1 {
    font-family: "Young Serif", serif;
    color: hsl(24, 5%, 18%);
}

.omelette {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

h1 {
    margin: 1rem 0;
}

h2,
h3 {
    color: hsl(14, 45%, 36%);
    margin: 1rem 0;
}

h2 {
    font-weight: 800;
}

.description {
    margin-bottom: 1rem;
}

.instructions {
    line-height: 1.75;
}

.calories {
    font-weight: 800;
    color: hsl(14, 45%, 36%);
}

hr {
    height: 1px;
    background-color: var(--color-Stone-150);
    border: none;
}

ul,
ol {
    padding-left: 20px;
}

ul li,
ol li {
    margin-bottom: 5px;
}

li::marker {
    color: hsl(14, 45%, 36%);
}

.prep-time {
    background: hsl(330, 100%, 98%);
    padding: 10px;
    border-radius: 8px;
}

table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
    
}

td {
    padding: 8px;
    border-bottom: 1px solid hsl(30, 18%, 87%);
}

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

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