html{
    height: 100%;
}

body{
    font-family: sans-serif;

    margin: 0;
    padding: 0;

    height: 100%;
}

.body-home {
    background-image: url('images/home-background4.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/*=========== HEADER ==========*/

.header{
    background-color: #A9ABAB ;

    width: 100%;
    height: 50px;
    top: 0;

    position: fixed;
    overflow: hidden;
    text-align: center;
}
.header i{
    float: left;
    padding: 17px 0px 0px 17px;
    color: black;
}
.header img{
    width: 150px;
    padding-top: 9px;
    padding-bottom: 14px;
    padding-right: 35px;
}

/*=========== HOME PAGE ==========*/

#home-logo-img{
    width: 50px;
    display: block;
    margin: auto;
    padding: 25px 10px 10px 10px;
}
#home-logo-text{
    width: auto;
    display: block;
    margin: auto;
    padding: 25px;
}

/*===== HOME PAGE MENU =====*/

.home-menu-item{
    text-decoration: none;
    text-transform: uppercase;

    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    border: 5px solid #5B5B5D ;

    display: block;
    margin: auto;
    margin-bottom: 10px;
    width: 80%;
}

/*=========== MEALS PAGE ==========*/

#meals {
    padding-top: 50px;
}

/*===== MEALS PAGE MENU =====*/

.meals-list a{
    text-decoration: none;
}

.meals-list-item{
    border: 5px solid #B6B3B3;
    margin: 10px;
}

.meals-list-item h1 {
    font-weight: bold;
    font-size: 30px;
    color: #ffffff;
    padding-left: 10px;
}

.meals-list-item i {
    float: right;
    color: #ffffff;
    padding-right: 10px;
}

.meals-list-item p{
    font-size: 12px;
    font-style: italic;
    color: #EFDDDD;
    margin-top: -7px;
    padding-left: 10px;
}

.body-meals {
    background-image: url('images/logo\ 1.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/*=========== OPTIONS PAGE ==========*/

#options{
    padding-top: 50px;
}

/*======= OPTIONS DETAILS =======*/

.options-details img{
    width: 100%;
}

.options-details h1{
    font-size: 25px;
    text-align: center;
    border: 5px solid #1a1a1a;
    margin: 10px;
    padding: 5px;
}

.options-details h2{
    font-size: 20px;
    text-align: left;
    margin: 0;
    margin-left: 10px;
}
.options-details-info{
    margin-left: 25px;
    margin-right: 25px;
}

.options-details-info p{
    font-size: 20px;
    display: inline-block;
}

.options-details-ingredients label{
    line-height: 25px;
    margin-left: 10px;
}

.options-details-informations{
    padding-top: 20px;
}

.options-details-steps ol{
    padding-left: 28px;
}

/*=========== INFO-BOX-FULL ==========*/

.button{
    display: block;
    width: 10%;
    background-color: rgb(54, 56, 54);
    text-decoration: none;
    text-align: left;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    padding-left: 10px;
    padding: 10px;
}

.info-box-full textarea{
    width: 30%;
    height: 65px;
    margin: 12px 0;
    border: solid #929292;
}

/*=========== THANKYOU PAGE ==========*/

.thankyou h1{
    padding-top: 50px;
    color: #B19DA9 ;
  
}

.body-thankyou{
    background-image: url('images/logo\ 1.jpg');
}

.thankyou p{
    color: #B19DA9 ;
}

/*======= RESPONSIVE LAYOUT =======*/

@media only screen and (min-width: 600px) {
    #meals {
        width: 80%;
        margin: auto;
    }

    #options {
        width: 80%;
        margin: auto;
    }

    #thankyou {
        width: 80%;
        margin: auto;
    }  
}

@media  screen and (min-width: 1000px) {
    #meals {
        width: 60%;
        margin: auto;
    }

    #options {
        width: 60%;
        margin: auto;
    }  

    #thankyou {
        width: 60%;
        margin: auto;
    }  
}

@media  screen and (min-width: 1500px) {
    #meals {
        width: 40%;
        margin: auto;
    }

    #options {
        width: 40%;
        margin: auto;
    }  

    #thankyou {
        width: 40%;
        margin: auto;
    }  
}

@media only screen and (min-width: 720px) {
    .body-home{
        background-image: url('images/home-background4.jpg')
    }
    .body-meals {
        background-image: url('images/logo\ 1.jpg')
    }
    .body-thankyou{
        background-image: url('images/logo\ 1.jpg');
    }
}





































































































