*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Corben', cursive;
    color: #EAEAE2;
}

.recipe-body{
    padding: 0 2rem;
    padding-top: 6rem;
    padding-bottom: 2rem;
    min-height: 100vh;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 3rem;
    grid-row-gap: px;
    background-color: #8CA49C;
    justify-content: center;
}

/* FIRST COLUMN */

.meal-img{
    width: 30rem;
}

.recipe-tags{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.recipe-tags div{
    font-size: 1.4rem;
    border: 1px solid #5D7C77;
    border-radius: 53px;
    padding: 0.2rem 2rem;
    background-color: #5D7C77;
    color: #EAEAE2;
    box-shadow: 0 2.4rem 4.8rem rgb(0 0 0 / 8%);
    cursor: pointer;

}

.first-column{
    position: relative;
}

.rating{
    position: absolute;
    top: 35rem;
    width: 100%;
    background-color: red;
    margin-top: 2rem;
    padding-bottom: 1.5rem;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background-color: #EAEAE2;
    box-shadow: 0 2.4rem 4.8rem rgb(0 0 0 / 8%);

}

.rating-title{
    color: #5D7C77;
    font-size: 1.4rem;
    padding-top: 0.8rem
}

.rating-number{
    color: #5D7C77;
    font-size: 2rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.rating-subnumber{
    color: #5D7C77;
    font-size: 1rem;
}



.stars ion-icon{
    color: #DCB461;
    font-size: 2rem;
}

.rating-people{
    color: #8CA49C;
    font-size: 1rem;
}

/* column 2 */

.recipe-title{
    font-size: 2rem;
}

.recipe-id{
    color: #5D7C77;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.column-border-bottom{
    border-bottom: 1px solid #EAEAE2;
}

.recipe-categories{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;

}

.recipe-categories div{
    font-size: 1rem;
    border: 1px solid #5D7C77;
    border-radius: 53px;
    padding: 0.4rem 2rem;
    background-color: #5D7C77;
    color: #EAEAE2;
    box-shadow: 0 2.4rem 4.8rem rgb(0 0 0 / 8%);
    cursor: pointer;
}

.ingredients-title, .instructions-title{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.ingredients-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.instructions-title{
    margin-top: 1rem;
}

/* COLUMN 3 */

.third-column{
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.video-title{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.video{
    width: 100%;
}

.recipe-btn{
    width: 100%;
}

.invisible{
    display: none;
}

.visible{
    display: yes;
}