.block-recipe-container{
    position: relative;
}
.block-recipe-container::before{
    width: 3000px;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgb(238, 236, 236);
    content: '';
}
.block-recipe-container::after{
    width: 3000px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3000px;
    background-color: rgb(238, 236, 236);
    content: '';
}

.block-recipe {
    clear: both;
    text-align: center;
    padding: 30px 30px;
    z-index: 1000;
    position: relative;
}
.block-recipe a{
    text-decoration: none;
}

.block-recipe-title{
    line-height: 1;
    margin-bottom: 50px;
}
.block-recipe-title strong{
    margin-bottom: 45px;
}
.block-recipe-title strong{
    font-size: 45px;
}
.block-recipe-title span{
    color: #c09b51;
}

.block-recipe-content {
    column-gap: 40px;
    margin: auto;
    justify-content: center;
    display: flex;
}

.div-recipe-content {
    display: grid;
    align-content: space-between;
    width: 33%;
}
.div-recipe-content img{
    height: 240px;
    width: 100%;
    object-fit: cover;
}
.div-recipe-content h3{
    text-transform: uppercase;
    margin-bottom: 30px;
}

.recipe-button-link{
    padding: 9px 45px;
    color: white !important;
    background-color: #c09b51;
    margin: auto;
    font-family: 'DIN-Regular';
}
.recipe-button-link:hover{
    color: white;
}
.recipe-button-link:focus {
    color: white;
}


@media screen and (max-width: 750px) {
    .block-recipe-content {
        display: block;
    }
    .div-recipe-content {
        width: 100%;
    }
    .div-recipe-content:nth-child(1) {
        margin-bottom: 40px;
    }
    .div-recipe-content:nth-child(2) {
        margin-bottom: 40px;
    }
}