/*css for the menu*/
body {
    background-image: url(beans.jpg);
    background-size: cover;
    height: 100%;
}

/* nav bar */
.topNav {
    overflow: hidden;
    background-color: #6b6464;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}
.topNav a:first-child{
    margin-left: 35%;
}


.topNav a{
    float: left;
    display: block;
    color: #b3acac;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 19px;

}

.topNav a:hover{
    background-color: blue;
    color: white;
}

.topNav .icon {
    display: none;
}

.topNav a.active{
    background-color: rgb(27, 27, 75);
    color: aliceblue;
}

/*media query to make nav bar vanish*/
@media screen and (max-width: 600px){
    .topNav a:not(:first-child){
        display: none;
    }
    .topNav a.icon{
        margin-left: 0;
        float: right;
        display: block;
    }
    .topNav.responsive{
        position: relative;
    }
    .topNav.responsive .icon{
        position: absolute;
        right: 0;
        left: 0;
    }
    .topNav.responsive a{
        float: none;
        display: block;
        text-align: left;
    }
}

/* END nav */
h1 {
    font-family: "Marck Script", cursive;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-style: bold;
  font-size: 40px;
  padding-top: 20px;
  line-height: .5;
}

p {
    text-align: center;
    padding-bottom: 10;
    .poppins-thin {
        font-family: "Poppins", sans-serif;
        font-weight: 100;
        font-style: normal;
        font-size: 20px;
      }
}

h2 {
    text-align: center;
    font-family: "Marck Script", cursive;
  font-weight: 600;
  font-style: normal;
  font-size: 25px;
  padding-top: 10px;
  line-height: .5;
}

.Menu{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(157, 218, 226);
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 20px;
    max-width: 750px;
}
.flavor, .Desserts, .Dinner, .Breakfast, .Sandwhiches, .Soup{
    text-align: left;  
    width: 35%;
    padding-left: 8%;
}

.Price{
    text-align: right;
    width: 35%;
    padding-left: 8%;
    
}

.Item p{
    display: inline-block;
}

.Item{
    line-height: .7;
}

#Date{
    text-align:center;
    font-size: 15px;
    color: rgb(0, 0, 0);
}

footer{
    padding: 10px 0 50px 0;
    margin: 0;
}

footer a{
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
}

.collumn1 {
    width: 50%;   
}

.collumn2 {
    width: 50%;
    float: right;
    margin-top: -950px;

}

   @media only screen and (max-width: 600px) {
        .collumn1 {width: 100%;}
        .collumn2 {width: 100%;
           float: none;
            margin: 0;
        }
        } 

   /* @media only screen and (min-width: 6000px) {
        .collumn {width: 100%;}
        .collumn2 {width: 100%;}
    }*/

   /* @media only screen and (min-width: 768px) {
        .collumn {width: 50%;}
    }

    @media only screen and (min-width: 992px) {
        .collumn {width: 50%;}
    }

    @media only screen and (min-width: 1200px) {
        .break {columns: 2;}
        .collumn {width: 50%;}
        .collumn2 {width: 50%;}
        .Menu {max-width: 900px;}
    }

    @media only screen and (min-width: 1750px) {
        .break {columns: 2;}
        .collumn {width: 100%;}
        .collumn2 {width:100%;}
        .Menu{max-width: 1200px;}
    } */
