@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap');

/* font-family: "Outfit", serif; */
/* font-family: "Young Serif", serif; */

:root{
    --White: hsl(0, 0%, 100%);
    --Stone-100: hsl(30, 54%, 90%);
    --Stone-150: hsl(30, 18%, 87%);
    --Stone-600: hsl(30, 10%, 34%);
    --Stone-900: hsl(24, 5%, 18%);
    --Brown-800: hsl(14, 45%, 36%);
    --Rose-800: hsl(332, 51%, 32%);
    --Rose-50: hsl(330, 100%, 98%);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: var(--Stone-100);
    font-family: "Outfit", serif;
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: var(--White);
    width: 40%;
    height: fit-content;
    padding: 30px;
    border-radius: 15px;
}

.container > * {
    margin-bottom: 20px;
}


.recipe-image img {
    width: 100%;
    border-radius: 15px;
}

.recipe-title h1 {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: 2rem;
}

.recipe-description p {
    font-weight: 300;
    font-size: 14px;
}

.recipe-time-details {
    background-color: var(--Rose-50);
    padding: 20px 40px;
    border-radius: 10px;
}

.recipe-time-details li {
    color: var(--Stone-600);
}

.recipe-time-details * {
    margin-bottom: 15px;
}

.recipe-time-details h3 {
    color: var(--Rose-800);
    margin-left: -20px;
}

span {
    color: var(--Brown-800);
    font-size: 17px;
    font-weight: 600;
    margin-left: 15px;
}


hr {
    border-color: var(--Rose-50);
    
}

h2 {
    font-family: "Young Serif", serif;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--Brown-800);
    margin-bottom: 10px;
}

.recipre-ingredients ul {
    padding: 10px 30px;
}

.recipre-ingredients ul li {
    margin-bottom: 9px;
    color: var(--Stone-600);
    padding-left: 15px; 
    text-indent: 5px; 
}

.recipe-instructions p {
    margin-top: 13px;
}


.recipe-instructions p span {
    margin-left: 0;
}

.recipe-instructions p:not(span) {
    color: var(--Stone-600);
}

.recipe-nutrition .nutrition-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--Stone-600);
}

.recipe-nutrition hr {
    margin: 10px 0;
}

.recipe-nutrition div {
    display: flex;
    justify-content: space-around;
}

.recipe-nutrition div p:first-of-type {
    color: var(--Stone-600);
}

@media  screen and (max-width: 992px){
    .container {
        width: 80%;
    }
}






