body {
    background-color: hsl(30, 54%, 90%);
}

.container {
    background-color: white;
    border-radius: 30px ; 
    padding: 30px ;
    margin: 15px auto; 
    max-width: 600px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 100%; 
    height: 100%;
    max-width: 1440px;
}

@media (max-width: 375px) {
    .container {
        padding: 20px; 
        margin: 10px auto; 
    }
}

.omelette {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: left;
}

.omelette .omelette-image {
    width: 100%; 
    height: auto; 
    border-radius: 8px; 
    object-fit: cover; 
    margin-bottom: 20px; 
}

.omelette h1 {
    font-size: 28px; 
    color: hsl(30, 54%, 20%);
    margin-bottom: 10px;
}

p {
    font-family: 'Outfit', sans-serif; 
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6; 
    color: hsl(30, 54%, 30%);
    margin-bottom: 20px; 

}

.preparation{
    display: flex;
    flex-direction: column;
    background-color: hsl(330, 100%, 98%);
    padding: 10px;
    border-radius: 8px; 
    margin-bottom: 20px; 
    font-family: 'Outfit', sans-serif; 
}

.preparation h2 {
    font-size: 16px;
    font-weight: 700;
    color: hsl(332, 51%, 32%);
    margin-bottom: 5px;
    margin-left: 15px;
}

.prepration ul {
    margin-top: 0px;
    margin-right: 20px;
}

.preparation li{
    margin-bottom: 10px;
}
.preparation li::marker {
    color: hsl(332, 51%, 32%); 
    font-size: 16px; 
}

.preparation li span {
    position: relative;
    right: -20px;
}

.ingredients {
    display: flex;
    flex-direction: column;
    font-family: 'Outfit', sans-serif;
    color: hsl(30, 54%, 30%);
    margin-bottom: 20px;
    border-bottom: 1px solid hsl(30, 18%, 87%); 
}

.ingredients h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1px;
    font-family: 'Outfit', sans-serif;
}

.ingredients li{
    margin-bottom: 10px;
    color: hsl(30, 10%, 34%);
}

.ingredients li span {
    position: relative;
    right: -20px;
}

.ingredients li::marker {
    color: hsl(30, 54%, 30%);
}


.instructions {
    display: flex;
    flex-direction: column;
    font-family: 'Outfit', sans-serif;
    border-bottom: 1px solid hsl(30, 18%, 87%); 
    margin-bottom: 20px;
}

.instructions h1 {
    font-weight: 700;
    color: hsl(30, 54%, 30%);
    margin-bottom: 1px;
}

.instructions li {
    margin-bottom: 10px;
    color: hsl(30, 10%, 34%);
    line-height: 1.2; 
}

.nutrition {
    display:flex;
    flex-direction: column;
}

.nutrition h1 {
    font-weight: 700;
    color: hsl(30, 54%, 30%);
    margin-bottom: 1px;
}

.nutrition p {
    color: hsl(30, 10%, 34%);
    font-weight: 400;
}

.nutrition tr {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    margin-left: 40px;
    margin-right: 20px; 
    border-bottom: 1px solid hsl(30, 18%, 87%); 
    font-family: 'Outfit', sans-serif;
    
}

.nutrition tr:last-child {
    border-bottom: none; /* Removes the border from the last row */
}
.nutrition td {
    padding: 2px 5px; /* Reduces the padding inside each cell */
    color: hsl(30, 54%, 30%);
    font-weight: 700;
    text-align: center; /* Keeps text aligned to the left */
    margin-right: 200px;
}

