*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #F3E5D8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    height: 100%;
    min-height: 100vh;
}
.container{
    background-color: white;
    width: 100%;
    max-width:510px;
    display: flex;
    padding: 30px;
    flex-direction: column;
    margin: 50px 0;
    gap: 10px;
    border-radius: 20px;
    align-items: start;
    justify-content: center;
}
img{
    border-radius: 10px;
    width: 100%;
}
.simp{
    font-size: 30px;
    font-weight: bolder;
}
.main-txt{
    font-size: 11px;
    color: hsl(0, 0%, 51%);
}
.prep{
    background-color: #fcf6f0;
    width: 100%;
    padding: 10px 40px;
    line-height:25px;
    border-radius: 10px;
    font-size: 13px;
    color: #1a1817;
}
.prep h2{
    color: #752B49;
    margin-bottom: 10px;
    font-size: 18px;
    margin-left: -18px;
}
.ingredient{
    margin: 5px 20px;
    line-height: 25px;
    font-size: 14px;
}
.ingredient h2{
    color: #7F4934;
    font-size: 20px;
    margin: 10px -20px ;
}
ul li::marker{
    color: #8E6E64;
}
li{
    padding-left: 10px;
}
.line{
    width: 100%;
    background-color: #E0E0E0;
    height: 1px;
}
.instruction{
    font-size: 12px;
    line-height: 20px;
    margin: 10px 15px;
    width: 100%;
    color: #1a1817;
}
.instruction h2{
    color: #7F4934;
    font-size: 20px;
    margin-bottom: 10px;
    margin-left: -15px;
}
ol li::marker{
    color: #8E6E64;
    font-weight: bolder;
}
ol li{
    margin-bottom: 5px;
}
.nutrition h2{
    color: #7F4934;
    font-size: 20px;
    margin: 10px 0;
}
.nutrition p{
    font-size: 13px;
    width: 100%;
    max-width: 450px;
    color: #1a1817;
}
.nutrition-table {
    max-width: 450px;
    margin: 20px auto;
    border-collapse: collapse;
    width: 100%;
}

.nutrition-table tr {
    border-bottom: 1px solid #eee;
}

.nutrition-table td {
    padding: 12px 10px;
    font-size: 14px;
    color: #444;
}

.nutrition-table td:first-child {
    text-align: left;
    width: 60%;
}

.nutrition-table td:last-child {
    text-align: left;
    font-weight: bold;
    color: #8b3a2b;
    width: 40;
}