section {
    color: rgb(54, 37, 5);
    margin: 15px 15px;
    margin-top: 110px;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-template-rows: auto;
    grid-gap: 15px;
    grid-template-areas:
    "title title"
    "image products"
    "image info";
    font-family: 'Yanone Kaffeesatz';
}

.title {
    grid-area: title;
    font-family: 'Amatic SC', cursive;
    font-size: 50px;
    text-align: center;
}
.title {
    display: flex;
    justify-content: flex-start;
    grid-area: title;
    font-family: 'Amatic SC', cursive;
    font-size: 50px;
    width: 100%;
}
.back-button{
    width: 10%;
    font-size: 70px;
    color: rgb(54, 37, 5);
}
.back-button:hover{
    width: 10%;
    font-size: 70px;
    color: rgba(54, 37, 5, 0.664);
}

.title .actual-title {
    width: 90%;
    display: flex;
    justify-content: center;
    text-align: center;
}

h2 {
    font-size: 40px;
}

p {
    font-size: 24px;
}

section ul {
    font-size: 24px;
    margin-left: 15px;
}
.recipe-products {
    grid-area: products;
}

.recipe-info {
    grid-area: info;
}

.recipe-image {
    grid-area: image;
}

.recipe-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media screen and (max-width:768px){

    section {
        margin: 15px 15px;
        margin-top: 110px;
        display: flex;
        flex-direction: column;
        font-family: 'Yanone Kaffeesatz';
    }
}