@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Young+Serif&display=swap');
:root{
    --heading-color: hsl(14, 47%, 40%);
    --prep-time: hsl(332, 51%, 32%);
    --White: hsl(0, 0%, 100%);
    --Rose-White: hsl(330, 67%, 86%);
    --Eggshell: hsl(30, 54%, 90%);
    --Light-Grey: hsl(30, 18%, 87%);
    --Wenge-Brown: hsl(32, 41%, 28%);
    --Dark-Charcoal: hsl(24, 5%, 18%);
}

*{
    margin: 0;
    padding: 0;
}

.parent{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: max-content;
    background-color: var(--Rose-White);
}

.container{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    width: 375px;
    border-radius: 7.5px;
    background-color: var(--White);
    margin: 0px auto;
}

.pic{
    width: 350px;
    height: 210spx;
    border-radius: 7.5px;
    object-fit: cover;
    margin: inherit;
}

/*Dish Description*/
.dish{
   display: flex;
   flex-direction: column; 
   width: 350px;
}

.dish-img{
    margin: 5.5px auto;
}

.dish-info{
    width: inherit;
}

.info-heading{
    margin: 6px 5px;
    font-size: 18px;
    font-family: Outfit,system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: var(--heading-color);
}

.info-desc{
    font-family: system-ui;
    font-size: 15px;
    font-weight: 400;
}

.dish-prep-time{
    display: flex;
    flex-direction: column;
    width: 250px;
    margin: 15px 27.5px;
}

.time-heading{
    margin: 6px 5px;
    font-size: 16px;
    font-family: Outfit,system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: var(--prep-time);
}

.prep-points{
    width: inherit;
    font-family: system-ui;
    font-size: 15px;
    font-weight: 400;
    color: var(--Wenge-Brown);
}

/*Dish-Prep-Guide*/
.guide{
    display: flex;
    flex-direction: column; 
    width: 350px;
}

.ingredients, .instructions, .nutrition{
    display: flex;
    flex-direction: column;
    width: 275px;
    margin: 15px 27.5px;
}

.guide-heading{
    margin: 6px 2px;
    font-size: 17.5px;
    font-family: Outfit,system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--heading-color);
}

.ingredient-points{
    width: inherit;
    font-family: system-ui;
    font-size: 15px;
    font-weight: 400;
    color: var(--Dark-Charcoal);
}

.instructions-list, .nutrition-intro, .table, .attribution{
    font-family: Outfit, system-ui;
    font-size: 15px;
    font-weight: 400;
}

.separator{
    border: none;
    background-color: var(--Light-Grey);
    height: 0.5px;
}

span.bold{
    font-family: system-ui;
    font-size: 13.5px;
    font-weight: 600;
}

.table{
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 5px 0px;
}

.attribution{
    margin: 20px auto 0px auto;
    text-align: center;
}