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

* {
    margin: 0px;
    padding: 0px;
    font-family: Outfit;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20vh 0;
    background-color: var(--stone-100);
}

.container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    width: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5em;
}

#image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#image-omelette {
    border-radius: 1rem;
    width: 100%;
}

.recipe-title {
    padding-bottom: 0.5em;
}

.recipe-description {
    font-size: smaller;
    color: var(--stone-600);
}

#time-info {
    background-color: var(--rose-50);
    padding: 1em;
    border-radius: 1em;
    margin-top: 1.5rem;
}

#time-info > ul {
    padding-left: 2em;
}

#time-info > ul > li {
    line-height: 2.5rem;
    padding-left: 1em;
    color: var(--stone-600);
}

li::marker {
    color: var(--rose-800);
    box-sizing: border-box;
}

#ingredients {
    padding-top: 1em;
}

ul {
    list-style-position: inside;
}

li {
    color: var(--stone-600);
    line-height: 2.5rem;
}

hr {
    margin: 2rem 0;

    color: var(--stone-600);
}

ol {
    padding-left: 1rem;
}

ol > li {
    line-height: 2em;
    margin-bottom: 0.5rem;
}
ol > li::marker {
    font-weight: bold;
    font-family: "Young Serif";
}

table {
    width: 100%; /* Adjust to fit the container */
    border-collapse: collapse; /* Remove default table spacing */
    margin: 20px 0; /* Add spacing around the table */
    text-align: left;
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid var(--stone-600);
}

th {
    color: var(--stone-600);
    font-weight: normal;
}

td {
    font-weight: bold;
    color: var(--brown-800);
}
