*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body{
    min-height: 100vh;
    font-family: outfit;
}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background-color: hsl(30, 54%, 90%);
}
.main, .container{
    background-color: hsl(0, 0%, 100%);
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
}
img{
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
h1{
    font-family: 'Young serif';
    font-size: 2rem;
    font-weight: 100;
}
.container p{
    font-family: outfit;
    font-size: 0.8em;
    font-weight: 300;
}
.time{
    padding: 15px 30px;
    background-color: rgb(247, 240, 241);
    border-radius: 10px;
}
.time h3{
    color: hsl(332, 51%, 32%);
}
.time li{
    margin: 0.9rem 1.3rem;
    font-size: 0.8em;
}
.time-li{
    margin-left: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}
.ingredients, .instructions{
    padding: 20px 20px;
    border-bottom: 0.1px solid rgb(204, 190, 190);
}
.ingredients h2, .instructions h2, .Nutrition h2{
    margin-bottom: 10px;
    font-family: 'Young serif', serif;
    color: hsl(14, 45%, 36%);
    font-weight: 400;
}
.instructions li, .ingredients li{
    margin: 10px 20px;
    padding-left: 20px;
    font-weight: 300;
    font-size: 0.8em;
}
.instructions b{
    font-weight: 500;
}
ul li::marker{
    font-size: 10px;
}
ol li::marker{
    font-weight: 500;
}
li::marker{
    color: hsl(14, 45%, 36%);
}
.Nutrition{
    padding: 20px 20px;
}
table{
    padding: 15px;
    width: 100%;
    border-collapse: collapse;
}

table tr{
    height: 30px;
    border-bottom: 1px solid rgb(95, 89, 89);
}
td{
    padding-left: 10px;
    font-size: 0.8em;
    font-weight: 300;
}
tr .second{
    color: hsl(14, 45%, 36%);
    font-weight: 400;
}
tr:last-child{
    border: 0;
}
@media (max-width: 500px){
    .main{
        padding: 0;
    }
    img{
        border-radius: 0;
    }
}