@font-face {
    font-family: "YoungSerif";
    src: url(./assets/fonts/young-serif/YoungSerif-Regular.ttf) format("truetype");
    
}
@font-face {
    font-family: "outfit";
    src: url(./assets/fonts/outfit/Outfit-VariableFont_wght.ttf) format("truetype");
}
* {
    margin: 0;
    box-sizing: border-box;
}


body {
    max-width: 100%;
    background-color: #F3E5D8;
    
}


.container {
    max-width: 735px;
    height: auto;
    background-color: hsl(0, 0%, 100%);
    margin: auto;
    inset: 0;
    margin-top: 100px;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 100px;
    
}

img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

.title {
    font-size: 40px;
    font-weight: 400;
    color: hsl(24, 5%, 18%);
    margin-bottom: 18px;
    font-family: "Youngserif";
}

.discription {
    color: hsl(30, 10%, 34%);
    font-size: 16px;
    margin-bottom: 25px;
    font-family: "outfit";
    line-height: 22px;
}

.prep {
    width: 100%;
    background-color: hsl(330, 100%, 98%);
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 25px;
}

.prep-title {
    color: hsl(332, 51%, 32%);
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    font-family: "outfit";
}
.bold-text{
    font-weight: 700;
}

ul li {
    margin-left: -15px;
    padding-left: 20px;
    margin-bottom: 12px;
    color: hsl(30, 10%, 34%);
    font-family: "outfit";
}

.sub-title {
    color: hsl(14, 45%, 36%);
    font-size: 28px;
    font-weight: 400;
    padding-bottom: 20px;
    font-family: "Youngserif";
}

.list {
    color: hsl(30, 18%, 87%);
    font-size: 16px;
    margin-bottom: 25px;
    font-family: "outfit";
}

hr {
    border-color: 1px solid hsl(30, 18%, 87%);
    margin-bottom: 25px;
}

ol li {
    color: hsl(30, 10%, 34%);
    margin-left: -15px;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    font-family: "outfit";
}
ol li::marker{
    color: hsl(14, 45%, 36%);
    font-weight: 600;
}


.instructions {
    margin-bottom: 25px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: "outfit";

}

.nutri-name {
    padding: 15px ;
    text-align: left;
    border-bottom: 1px solid hsl(30, 18%, 87%);
    font-size: 16px;
    color: hsl(30, 10%, 34%);
    padding-left: 35px;

}

.nutri-value {
    padding-right: 40px;
    text-align: left;
    border-bottom: 1px solid hsl(30, 18%, 87%);
    font-size: 16px;
    color: hsl(14, 45%, 36%);
    font-weight: 700;
}

table tr:last-child .nutri-name,
table tr:last-child .nutri-value {
    border-bottom: none;
    
}

@media (max-width: 375px) {
    .container{
        padding: 15px;
        margin: 20px;
    }
    .title{
        font-size: 24px;
    }
    .discription{
        font-size: 14px;
    }
    .prep{
        padding-bottom: 10px;
    }
    .prep-title{
        font-size: 16px;
    }
    .sub-title{
        font-size: 16px;
    }
    .list{
        font-size: 14px;
    }
    ol li{
        font-size: 14px;
    }
    .nutri-name, .nutri-value{
        font-size: 14px;
    }
}
