html{
    height: 100%;
}

body{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

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

.body-meals{
    background-image: url('images/background-02-port.png');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/*==========HEADER==========*/
.header{
    background-color: tomato;
    width: 100%;
    height: 50px;
    top: 0;
    position: fixed;
    overflow: hidden;
    text-align: center;
}

.header i{
    float: left;
    padding: 17px 0px 0px 17px;
    color: white;
}

.header img{
    width: 150px;
    padding-top: 5px;
    padding-right: 25px;
}

/*==========HOME PAGE==========*/
#home-logo-img{
    width: 150px;
    display: block;
    margin: auto;
    padding: 25px 10px 10px 10px;
}

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

/*=====HOME PAGE MENU=====*/
.home-menu-item{
    text-decoration: none;
    text-transform: uppercase;
    color: whitesmoke;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    border: 5px solid whitesmoke;
    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 #1a1a1a;
    margin: 10px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 80%;
    
}

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

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

/*==========ORDER PAGE==========*/
#orders-page{
    padding-top: 50px;
}

/*=====ORDER PAGE DETAILS=====*/
.order-page-details img{
    width: 100%;
}

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

.orders-page-details h2{
    font-size: 20px;
    text-align: left;
    margin: 0;
    margin-left: 10px;
}

.order-page-details-info{
    margin-left: 25px;
    margin-right: 25px;
}

.order-page-details-info p{
    font-size: 13px;
    display: inline-block;
}

.order-page-details-extras label{
    line-height: 25px;
    margin-left: 1px;
}

/*=================ORDER PAGE FORM====================*/
.order-page-details-form input{
    width: 80%;
    height: 25px;
    margin: 12px 0;
    border: 1px solid #929292;
    margin-left: 10px;
}

textarea{
    width: 80%;
    height: 65px;
    margin: 12px 0;
    border: 1px solid #929292;
    margin-left: 10px;
}

.button{
    display: block;
    width: 100%;
    background-color: coral;
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    padding: 8px 0;
}

.homepage{
    display: block;
    width: 100%;
    background-color: coral;
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    padding: 8px 0;
}

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

    #order-page{
        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/whole_roasted_chicken_main.jpg');
    }

    .body-meals{
        background-image: url('images/background-02-land.png');
    }
}