body{
    background-color: hsl(30, 54%, 90%);
    padding: 20px;
    justify-content: center;
}

.container{
    max-width: 700px;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.recipe-img{
    width: 90%;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 20px auto;
    border-radius: 10px;

}
h1 {
    font-size: 32px;
    color: #333;
    margin: 20px;
}

.description {
    color: #555;
    margin: 20px;
}

.prep-time {
    background-color: hsl(330, 100%, 98%);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 25px;
    margin: 20px;
}

.prep-time ul {
    list-style: none;

}

.prep-time li {
    margin-bottom: 8px;
    align-items: start;
}

.prep-time li::before {
    content: "•";
    color: #a04e4e;
    font-weight: bold;
    margin-right: 10px;
}

h2 {
    font-size: 24px;
    color: #8d4b2c;
    margin-bottom: 15px;
    margin-top: 25px;
}

.ingredients-list {
    list-style: none;
    margin-bottom: 20px;
}

.ingredients-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.ingredients-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    margin-right: 10px;
}

.instructions-list {
    list-style: none;
    counter-reset: instructions;
}

.instructions-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.instructions-list li::before {
    counter-increment: instructions;
    content: counter(instructions) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.step-title {
    font-weight: bold;
}

.nutrition-table {
    width: 80%;
    border-collapse: separate;
    border-spacing: 0;
}

.nutrition-table td {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95em;
}

.nutrition-table td:first-child {
    color: #666;
    width: 30%;
}

.nutrition-table td:last-child {
    color: #8b5a3c;
    font-weight: bold;
    text-align: right;
}

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