body   {
    background-color: #f0f0f0;
    font-family: Outfit, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: hsl(30, 54%, 90%);
    color: hsl(30, 10%, 34%);

    font-size: 1rem;

}

.Title   {
    font-family: Young Serif, serif;
    font-size: 2.5rem;
    color: black
} 

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

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

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

.instructions-list   {
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

.ingredients-list   {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.line   {
     border-bottom: 1px solid #888;
}


.omelette   {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.body-container {
    display: flex;
    flex-direction: column;



    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    background-color: #ffffff;

    border-radius: 15px;
}

.prep-time-list {
    display: flex;
    flex-direction:column;
    gap: 10px;

}

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

    justify-content: left;
    align-items: left;
}

.prep-time {
    color: hsl(332, 51%, 32%);
    padding-left: 20px;
}

.cals {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px;

}

.cal-numbers {
    padding-right: 100px;
    color: hsl(24, 5%, 18%);
}