.recipe-image{
    width: 350px;    
    height: 350px;
    border-radius: 20px;
    margin-right: 3%;
}


body{
    padding: 0;
    margin: 0;
    font-size: 18px;
}

html{
    background-color: #D2B48C;
    color: #3E3937;
    font-family: "Hepta Slab", serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
}

.recipe-header{
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    background-color: #D2B48C;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    width: 85%;
}

h4{
    font-size: 22px;
    margin: 0;
}

h1, ul, p{
    margin: 0;
}

h1{
    margin-bottom: 15px;
}

h4{
    margin-top: 15px;
    margin-bottom: 5px;
}

.recipe-title-description{
    width: 50%;
}


.recipe-content{
    background-color: #FFF4E1;
}

.content-section{
    display: flex;
    border-bottom: 1.5px solid #3E3937;
    padding: 0;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 4%;
}

.ingredients{
    width: 23%;
    margin-right: 5%;
}

.instructions{
    width: 38%;
    margin-right: 5%;
}

.instructions-image{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.image-container-container{
    width: 23%;
    margin-right: 5%;
    height: auto;
}

.image-container{
    width: 100%;
    
}

li{
    margin-bottom: 10px;
}

/* Mobile Section */
@media(max-width:640px) {

    body{
        font-size: 15px;
    }
    
    .recipe-header{
        display: block;
        align-items: center;
        width: 90%;
        margin-bottom: 30px;
    }

    .recipe-header img{
        width: 250px;    
        height: 250px;
        border-radius: 20px;
        display: block;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .recipe-title-description{
        width: 100%;
    }

    .recipe-header h1{
        width: 100%;
    }

    h4{
        font-size: 18px;
    }

    h1{
        font-size: 26px;
    }

    .content-section{
        display: block;
        padding: 0;
        padding-top: 40px;
    }
    
    .instructions, .ingredients, .image-container-container{
        width: 80%;
        margin: auto;
        margin-bottom: 40px;
    }
    


}