/* General For All
––––––––––––––––––––––––––––––––––––––––––––––––––
font-family: 'Baloo Paaji', cursive;
font-family: 'Open Sans', sans-serif;

green: #31c074
black: #000;
*/
*{text-decoration: none;}

img {max-width: 100%;}

header {height:600px;
  background-color: white;
  background-image:url(images/food.gif);
  background-size: cover;
  background-position: center center;
    background-repeat: no-repeat;
  margin-bottom: 50px;
    margin: 30px;
    margin-left: auto;
 width: 100%;
}



  
nav{width:100%; 
    height: 50px; 
    max-width: 1000px; 
    margin: auto;
    display: flex;
    justify-content: space-around;}



.logo {
    width: 30%; 
    float: center;
    padding-top: 35px;
    padding-bottom: 5px;
    text-align: center;
}



    section {width:auto;
    margin: auto;
    display: flex;
    }


.green{width: 100%; height: 400px; 
    background-color:rgba(49, 192, 116, 0.72);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.item{}
footer{font: .7em; font-family: 'Open Sans', sans-serif;}


.column {
    float: left;
    width: 33.33%;
    padding-top: 10px;
    text-align: center;
}

nav a {
    color: black;
    font-size: 15pt;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    margin-left: 70px;
    margin-right: 70px;
    padding-top: 20px;
    padding-bottom: 10px;
    transition: all .3s ease-in;
}



nav a:hover {color: darkred; transition: all .3s ease-in;}


.area {
    width: 100%;
    height: 30px;
    background-color: #e6e7e8;
    font-family: 'Roboto', sans-serif;      
}

.row:after {
    content: "";
    display: table;
    clear: both;
}






/* ---------------Tablet --------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 800px) {
 body {background-color: white;}
    header {height: 400px;}
    .green {flex-direction: column; height: 800px;}
    

   
}





/* ---------------Mobile -------------------------------------- */
@media screen and (max-width: 480px){
 
    body {background-color: red;}
    header {height: 600px; background-size: contain;
    background-repeat: no-repeat;}
    
    nav{flex-direction: column;
    height: 300px;
    text-align: center;}
    
    
    nav a:hover{color: black;}
    .hidden {display: none;}
    
    .inner2{ 
        width: 100%; 
        flex-direction: column; 
        justify-content: center;}
    .inner2 img {align-self: center;}
    .green {height: 800px;}

    
}




