html{
    height: 100%;
}

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

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

.body-starters{
    background-image: url('images/photo-1553095066-5014bc7b7f2d.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    
}

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

.header{
    background-color:red;
    
    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: 14px;
    padding-right: 25px;
}

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


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

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

.home-menu-item{
    text-decoration: none;
    text-transform: uppercase;
    
    color: white;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    border: 5px solid white;
    
    display: block;
    margin: auto;
    margin-bottom: 10px;
    width: 80%;
}

/*============ STARTERS PAGE ============*/

#starters{
   padding-top: 50px;
}

/*============ STARTERS PAGE MENU ============*/

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

.starters-list-item{
    border: 5px solid white;
    margin: 10px;
}

.starters-list-item h1{
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding-left: 10px;
}

.starters-list-item i{
    float: right;
    color: white;
    padding-right: 20px;
}

.starters-list-item p{
    font-size: 15px;
    font-style: italic;
    color: red;
    margin-top: -7px;
    padding-left: 10px;
}

/*============ RECIPE PAGE ============*/

#recipe{    
    padding-top: 50px;
}

/*============ STARTERS DETAILS ============*/

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

.recipe-details h1{
    font-size: 25px;
    text-align: center;
    border: 5px solid white;
    margin: 10px;
    padding: 5px;
}

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

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

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

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

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

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

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

@media only screen and (min-width:720px){
    #body-home{
        background-image: url('images/herbs-spices-black_final.jpg')
    }
    #body-starters{
        background-image: url('images/wood%202%20texture.jpg')
    }
}
























