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

/* Colors */
:root {
    --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%);
}

/* Fonts and Headings */
body {
    background: var(--stone-100);
    font-family: 'Outfit', sans-serif;
    color: var(--stone-600);
}

h1 {
    font-family: 'Young Serif', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--stone-900);
}

h2 {
    font-family: 'Young Serif', serif;
    color: var(--brown-800);
    font-size: 1.75rem;
    font-weight: 500;
}

h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--rose-800);
    font-weight: 600;
    font-size: 1.25rem;
}

.bold {
    font-weight: 700;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 7.5rem;
}

.card {
    background: white;
    max-width: 46rem;
    border-radius: 1.6rem;
    padding: 40px;
}

.card .omelette-photo {
    width: 100%;
    border-radius: 0.8rem;
}

.card h1 {
    margin-top: 1.75rem;
}

.card p {
    margin: 1rem 0 2rem;
    line-height: 1.5;
}


/* Prep-time Card */
.card .prep-time-card {
    background: var(--rose-50);
    padding: 1.5rem 1.75rem 1.75rem 1.75rem;
    border-radius: 10px;
}

.card .prep-time-card h3 {
    margin-bottom: 1rem;
}

/* Marker and li*/
::marker {
    font-size: 1rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.prep-time-card li::marker {
    color: var(--rose-800);
}

li {
    padding-left: 1.5rem;
    margin: 0.75rem 0 0;
}

ul {
    padding-left: 1rem; 
}

ol {
    padding-left: 1.5rem;
}

.instructions li {
    padding-left: 1rem;
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.instructions ol li::marker {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--brown-800);
}


/* Ingredients */
.card .ingredients {
    border-bottom: 1px solid var(--stone-100);
    padding-bottom: 2rem;
}

.card .ingredients h2 {
    margin: 1.7rem 0 1rem;
}

/* Instructions */

.card .instructions h2 {
    margin: 1.7rem 0 1rem;
}

.card .instructions {
    border-bottom: 1px solid var(--stone-100);
    padding-bottom: 2rem;
}

/* Nutrition */

.card .nutrition h2 {
    margin: 1.7rem 0 1rem;
}

.card .nutrition p {
        margin: 1rem 0 0.4rem;
}

.card table {
    width: 100%;
}

.card table td {
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid var(--stone-100);
}

.card table .bold {
    color: var(--brown-800);

}

.nutrition-column-1 {
    width: 46.6%;
}

.bottom-row {
    border: none;
}