html {
    height: 100%;
}

body {
    font-family: sans-serif;
    
    margin: 0;
    padding: 0;
    background-color: #f9e4c3;
    height: 100%;
    
}

.body-home {
    background-image: url('images/BBB5.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    
}


.body-starter {
    background-image: url('images/background%20image4.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    
}

/*======== header ========*/

.header i{
    float: left;
    padding: 10px;
    color: #ffffff;
}
.header img {
    width: 150px;
    padding-top: 14px;
    padding-right: 25px;
}


/*======== home page =========*/

#home-logo-img {
    width: 100px;
    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%;
}

/*======== starter page =========*/


/*======== starter page menu =========*/

.starter-list a {
    text-decoration: none;
    color: white;
}

.starter-list-item {
    border: 5px solid #ffffff;
    margin: 10px;
}

.starter-list-item h1 {
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    padding-left: 10px;
}

.starter-list-item i {
    float: right;
    color: #ffffff;
    padding-right: 20px;
    padding-top: 15px;
}


.starter-list-item p {
    font-size: 15px;
    font-style: italic;
    color: #ffffff;
    margin-top: 7px;
    padding-left: 10px;
    
}

/*======== recipe page =========*/

#recipe {
    padding-top: 50px;
}

/*======== recipe details =========*/

.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-ingrediants label {
    line-height: 25px;
    margin-left: 10px;
}

.recipe-details-steps {
    padding-top: 20px;  
}

.recipe-details-steps ol {
    padding-left: 28px;
}

.button {
  display: inline-block;
  padding: 15px 25px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}
.button:hover {background-color: #3e8e41}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


/*======== 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/BBB5.jpg');
    }
    
    body-meals {
        background-image: url('images/background%20image4.jpg');
    }
}

