* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-size: 16px;
    min-width: 565px;
}

#wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    font-family: 'Raleway', sans-serif;
}

/************************************/
/************--Defaults--************/
/************************************/

h1 {
    font-size: 73px;
    color: #adcc6f;
    font-weight: 700;
}

p {
    font-size: 24px;
    color: #42453e;
    font-weight: 600;
    margin-top: 10px;
}

button {
    width: auto;
    height: 80px;
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    background: #97bf74;
    border-radius: 16px;
    padding: 19px;
    padding-left: 45px;
    padding-right: 45px;
    margin-top: 70px;
    border: none;
}

button.appstore {
    width: 312px;
    height: 80px;
    background-image: url(../img/AppStore.svg);
    background-repeat: no-repeat;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 70px;
}

button.googleplay {
    width: 311px;
    height: 80px;
    background-image: url(../img/GooglePlay.svg);
    background-repeat: no-repeat;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 70px;
}

button.googleplay:hover {
    background-image: url(../img/GooglePlay_hover.svg);

    cursor: pointer;
}

button.appstore:hover {
    background-image: url(../img/AppStore_hover.svg);

    cursor: pointer;
}

button:active {
    transform: scale(0.95);
}

.buttons {
    width: 650px;
    display: flex;
    justify-content: space-between;
}

.bold {
    font-weight: 700;
}

/************************************/
/************--General--*************/
/************************************/

.box {
    height: calc(100% - 70px);
    background-image: url(../img/bg/landingpage_bg.png);
    border: solid 1px #e3e3e3;
    margin: 70px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 120px;
}

.box_2 {
    height: calc(100% - 140px);
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    margin: 70px;
    padding: 120px;
    position: relative;
}

.box_2 .fork_bg {
    width: 905px;
    height: 857px;
    background-image: url(../img/bg/fork_bg_overlay.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -70px;
    right: 100px;
}

.box_3 {
    height: calc(100% - 70px);
    background-color: rgba(185, 224, 162, 0.05);
    border: solid 1px #e4e4e4;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 70px;
    margin-top: 0px;
    padding: 120px;
    position: relative;
}

.box_3 .leaf_bg {
    width: 743px;
    height: 614px;
    background-image: url(../img/bg/leaf_bg_overlay.png);
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    bottom: 0px;
    right: 0px;
}


/************************************/
/*----------------------------------*/
/************************************/

.landing-page {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: #fff;
}

.text-box {
    width: 1000px;
    height: 300px;
    z-index: 999;
}

.text-box.bottom {
    width: 720px;
}

.text-box.mid {
    width: 765px;
    height: 475px;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.book {
    width: 1135px;
    height: 540px;
    background-image: url(../img/content/content_cookbook.png);
    z-index: 999;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.iphone {
    width: 470px;
    height: 760px;
    background-image: url(../img/content/content_iphone.png);
    z-index: 999;
    position: absolute;
    left: 120px;
    bottom: -70px;
}

.informational-page {
    width: 100%;
    height: 100vh;
    background: #fff;
}

.calltoaction {
    width: 100%;
    height: 100vh;
    background: #fff;
}

/************************************/
/*********--Media-quarries--*********/
/************************************/

@media screen and (max-width: 1800px) {
    .book {
        width: 900px;
        height: 440px;
        background-size: cover;
        position: absolute;
        right: 0px;
        bottom: 0px;
    }
}

@media screen and (max-width: 1700px) {
    .iphone {
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 70px;
        bottom: -70px;
    }
}

@media screen and (max-width: 1650px) {
    .iphone {
        width: 420px;
        height: 700px;
        position: absolute;
        left: 70px;
        bottom: -70px;
    }
}

@media screen and (max-width: 1600px) {
    .book {
        width: 700px;
        height: 340px;
        background-size: cover;
        position: absolute;
        right: 0px;
        bottom: 0px;
    }
}

@media screen and (max-width: 1570px) {
    .box_2 {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
    }
    
    .iphone {
        width: 420px;
        height: 200px;
        position: absolute;
        left: 120px;
        bottom: -70px;
    }
}

@media screen and (max-width: 1300px) {
    h1 {
        font-size: 53px;
    }
    
    p {
        font-size: 18px;
    }
    
    .text-box.mid {
        width: 100%;
        height: 300px;
        z-index: 999;
    }
    
    button {
        width: auto;
        height: 60px;
        font-family: 'Raleway', sans-serif;
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        border-radius: 13px;
        padding: 16px;
        padding-left: 45px;
        padding-right: 45px;
        margin-top: 40px;
        border: none;
        margin-right: 15px;
    }
    
    button.appstore {
        width: 235px;
        height: 60px;
        font-family: 'Raleway', sans-serif;
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        border-radius: 13px;
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 40px;
        border: none;
        margin-right: 15px;
    }
    
    button.googleplay {
        width: 235px;
        height: 60px;
        font-family: 'Raleway', sans-serif;
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        border-radius: 13px;
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 40px;
        border: none;
        margin-right: 15px;
    }
    
    .buttons {
        width: 715px;
        display: flex;
        justify-content: flex-start;
    }
    
    .box_2 .fork_bg {
        width: 550px;
        height: 514px;
        background-size: contain;
        background-image: url(../img/bg/fork_bg_overlay.png);
        background-repeat: no-repeat;
        position: absolute;
        bottom: -70px;
        right: 50px;
    }
    
    .iphone {
        width: 420px;
        height: 300px;
        position: absolute;
        left: 120px;
        bottom: -70px;
    }
    
}

@media screen and (max-width: 1070px) {
    .iphone {
        width: 320px;
        height: 250px;
        position: absolute;
        left: 120px;
        bottom: -70px;
    }   
}

@media screen and (max-width: 1000px) {
    
    .book {
        width: 620px;
        height: 300px;
        background-size: cover;
        z-index: 999;
        position: absolute;
        right: -35px;
        bottom: 0px;
    }
    
    .iphone {
        width: 170px;
        height: 320px;
        z-index: 999;
        position: absolute;
        left: 70px;
        bottom: -112px;
    }
    
    .box {
        height: calc(100% - 40px);
        margin: 40px;
        margin-bottom: 0px;
        padding: 40px;
        position: relative;
    }

    .box_2 {
        margin: 40px;
        padding: 40px;
    }

    .box_3 {
        height: calc(100% - 40px);
        margin: 40px;
        margin-top: 0px;
        padding: 40px;
    }

    .box_3 .leaf_bg {
        width: 380px;
        height: 314px;
        background-size: contain;
        background-image: url(../img/bg/leaf_bg_overlay.png);
        background-repeat: no-repeat;
        position: absolute;
        z-index: 1;
        bottom: 0px;
        right: 0px;
    }
    
    .box_2 .fork_bg {
        width: 350px;
        height: 314px;
        background-size: contain;
        background-image: url(../img/bg/fork_bg_overlay.png);
        background-repeat: no-repeat;
        position: absolute;
        bottom: -100px;
        right: 50px;
    }
}

@media screen and (max-width: 850px) {
    .iphone {
        width: 170px;
        height: 300px;
        z-index: 999;
        position: absolute;
        left: 70px;
        bottom: -112px;
    }       
}

@media screen and (max-width: 750px) {
    .buttons {
        width: 715px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    
    .buttons a:nth-child(2) button {
        margin-top: 20px;

    }
    
    .buttons button {
        width: 235px;
        text-align: center;
    }
    
    .iphone {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    .book {
        width: 495px;
        height: 240px;
        background-size: cover;
        position: absolute;
        right: -35px;
        bottom: 0px;
    }
}