body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

h1{
    font-size: 48px;
    color: rgb(95, 94, 94);
}

h3{
    font-size: 28px;
}

.orange{
    color: orange;
}

.flexible-container{
    display: flex;
    margin-bottom: 80px;
}

.half-width{
    width: 50%;
    padding-left: 5%;
    
}

.half-width img{
    width: 90%;
}

.half-width-middle{
    width: 50%;
    padding-left: 5%;
}

.half-width-middle img{
    width: 60%;
    margin-top: 5%;
}

.link-button{
    text-decoration: none;
    background-image: linear-gradient(orange, tomato);
    padding: 5px 25px;
    font-weight: 700;
    border-radius: 5px;
}

.about-us{
    background-image: url(images/background_middle.png);
    background-repeat: no-repeat;
    background-position: right;
}

.recipes{
    display: flex;
}

#recipe-head{
    color: rgb(59, 58, 58);
    text-align: center;
    font-weight: 900;
}

.recipe-item{
    width: 20%;
    margin-left: 5%;
    margin-right: 5%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 10px 10px 40px gray;
}

.recipe-item img{
    width: 100%;
}

.social-media{
    display: flex;
}

#social-media-body{
    height: 50%;
    width: 80%;
    margin: 100px;
    border-radius: 10px;
    box-shadow: 10px 10px 40px gray;
}

.social-media-followers{
    width: 60%;
    margin-left: 5%;
    margin-right: 5%;
    padding: 10px;
}

footer{
    color: blanchedalmond;
    text-align: center;
    background-color: black;
    padding-top: 20px;
    padding-bottom: 80px;

}