﻿.attribution {
    font-size: 11px;
    text-align: center;
}

    .attribution a {
        color: hsl(228, 45%, 44%);
    }


body {
    background-color: #F9EDE3;
    color: #59524D;
    font-size: 18px;
    font-family: 'Outfit';
    line-height:1.4;
    display:grid;
    place-content:center;
    min-height:100vh;
}
.contaner{
    max-width:800px;
    background-color:#ffffff;
    margin:2rem;
    border-radius:1rem;
}
img{
    display:block;
    max-width:100%;
    border-radius:1rem;
}
h1, h2 {
    font-family:'Young Serif';
    font-weight:400;
}
h1 {
    color: #2E2B29;
    font-size:2.8rem;
}

h2 {
    color: #8B4D37;
    margin-bottom:1rem;
}
.recipe-steps {
    margin-top:1rem;
}
.nutrition {
    margin-top: 1rem;
}
ul{
    padding-left:1.25rem;
}

    ul li::marker {
        color: #8B4D37;
        font-weight:bold;
    }

ul li span{
    font-weight:700;
    margin-left:1rem;
}
hr {
    border: 1px solid #EAE3DE;
    margin: 1.5rem 0;
}
.contaner .recipe-img {
    padding:2rem;
}
.recipe-information{
    margin:2rem;
}
.Preparation {
    background-color: #FFF0F5;
    border-radius: 1rem;
    padding:1rem;
}
.Preparation_p {
    font-weight: 600;
    font-size: 21px;
    color: #782B44;
}
.Preparation-ul li{
    line-height:2rem;
    margin-left:1rem;

}
    .Preparation-ul li::marker {
        color: #782B44;
    }
    .item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
.num {
    margin-top: 1rem;
    color: #8B4D37;
    font-weight:bold;
}
.item span{
    font-weight:bold;
}

.Ingredients li{
    padding-left:1rem;
    line-height:2.5rem;
}
.nutrition .values{
    margin-bottom:1rem;
}
.nutrition .item {
    padding: .75rem 2rem;
    display: flex;
    border-bottom: 1px solid #EAE3DE;
}
    .nutrition .item:last-child {
        border-bottom: 0;
    }
    .nutrition .item .amount {
        font-weight: 700; 
        color: #8B4D37;
    }
.nutrition .item > * {
    width:100px;
    margin-right:auto;
}

@media (max-width:540px){
    h1{
        margin-top:2rem;
    }
    .contaner{
        margin:0;
    }
        .contaner .recipe-img{
            padding:0;
            border-radius:0;
        }
        .contaner .recipe-img img{
            border-radius:0;
        }

}



