html{
    height: 100%;
}

body{
    font-family: sans-serif;

    margin: 0;
    padding: 0;

    height: 100%;
}

.body-home{
    background-image: url('images/Restaurant-meal-1024x680.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

}
.body-meals{
    background-image: url('images/la-mesa-mexican-restaurant-margarita-with-chips.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/*========== CUSTOM CHECKBOXES==========*/

input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label:before {
    font-family: fontAwesome;
    display: inline-block;

    content: "\f0c8";
    letter-spacing: 10px;
    font-size: 20px;
    
}

input[type=checkbox]:checked + label:before{
    content: "\f14a";
}

/*==========HEADER==========*/

.header {
    background-color: #bad66b;

    width: 100%;
    height: 50px;
    top: 0;

    position: fixed;
    overflow: hidden;

    text-align: center;
}

.header i {
    float:left;
    padding: 17px 0px 0px 17px;
    color: rgb(247, 247, 247);
   
}

.header img {
    width: 200px;
    padding: 0px;
    padding-right: 20px;
}

/*==========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 10px 10px 10px;     
}

/*=====HOME PAGE MENU=====*/

.home-menu-item {
    text-decoration: none;
    text-transform: uppercase;

    color: rgb(255, 255, 255);
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    border: 5px solid #feffff;
    
    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 rgb(52, 129, 91);
    margin: 10px;
}

.meals-list-item h1{
    font-weight: bold;
    font-size: 35px;
    color: rgb(250, 254, 255);
    padding-left: 10px;
}
.meals-list-item i {
    float: right;
    color: white;
    padding-right: 10px;
}
.meals-list-item p {
    font-size: 20px;
    font-style: italic;
    color: white;
    margin-top: -7px;
    padding-left: 10px;


}
/*========== RESTUARANT PAGE==========*/
    
/*==========RESTUARANT DEAILS==========*/
.recipe-details img {
    width: 100%;
}

.recipe-details h1 {
    font-size: 25px;
    text-align: center;
    border: 5px solid #1a1a1a;
    margin: 10px;
    padding: 5px;

}
.recipe-details h2 {
    font-size: 20px;
    text-align: left;
    margin: 0;
    margin-left: 10px;

}

.recipe-details-info {
    margin-left: 25px;
    margin-right: 25px;

}

.recipe-details-info p {
    font-size: 13px;
    display: inline-block;
    
}
.recipe-details-ingredients label {
    list-style: 25px;
    margin-left: 10px;

}
.recipe-details-steps{
    padding-top: 20px;
}
.recipe-details-steps-space ol {
    padding-left: 28px;

}

/*========== RESPONSIVE LAYOUT==========*/

@media only screen and (min-width: 600px) {
    #meals {
        width: 80%;
        margin: auto;
    }
    #recipe {
        width: 80%;
        margin: auto;
    }
}
  
@media only screen and (min-width: 1000px) {
    #meals {
        width: 60%;
        margin: auto;
    }
    #recipe {
        width: 60%;
        margin: auto;
    }
}

@media only screen and (min-width: 1500px) {
    #meals {
        width: 40%;
        margin: auto;
    }
    #recipe {
        width: 40%;
        margin: auto;
    }
}
  
@media only screen and (min-width: 720px) {
    .body-home{
        background-image: url('images/Restaurant-meal-1024x680.jpg');
    }
}
.body-meals {
    background-image: url('images/la-mesa-mexican-restaurant-margarita-with-chips.jpg');
}