
.cook-book-wrapper-outer{
    width: 100%;
    background-image: url("../assets/XiaomiCookBook/bcg-cook-desktop.png");
    background-size: cover;
    min-height: 100vh;
}
.cook-book-wrapper{
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 0 0 0;
}
.headerlogo{
    margin: 0 auto;
    max-width: 500px;
}
.headerlogo-mobile{
    display: none;
}
.recipes-wrapper{
    max-width: 1820px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* border: 1px solid black; */
}
.recipe{
    margin: 50px 0;
    width: 90%;
    max-width: 800px;
}
 .mobile-recipe{
        display: none;
}
@media only screen and (max-width: 750px) {
    .cook-book-wrapper-outer{
        background-image: none;
        background-color: #20533D;
    }
    .headerlogo{
        display: none;
    }
    .headerlogo-mobile{
        display: block;
    }
    .recipes-wrapper{
        margin-top: -20px;
        padding-bottom: 40px;
    }

    .recipe{
        margin: 0;
        width: 100%;
    }
    .desktop-recipe{
        display: none;
    }
    .mobile-recipe{
        display: block;
    }
}