 /* Margin and padding Applies to entire page */
 * {
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }
  .navbar {
    /* border: 4px solid rgb(216, 49, 49); */
    border-bottom: 1px solid gray;
    height: 70px;
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
  }

  .left-nav {
     /* border: 4px dashed yellow; */ 
     height: auto;
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

 .logo a > img {
    width: 100px;
  }



  .right-nav {
    display: flex;
    width: 70%;
    /* border: 4px dashed green; */
    justify-content: space-evenly;
    align-items: center;
  }


  .right-nav a {
    color: black;
  }
  .right-nav a:link {
    text-decoration: none;
  }
  .right-nav a:hover {
  color: rgb(248, 212, 123);
    text-decoration: underline;
  }
 



.cont{
    height: 700px;
    /* border: 2px red solid; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.chefimg {
    display: flex;
    justify-content: center;
}

.chefimg > img {
    width: 50%;
}

h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    color: rgb(97, 72, 8);
    font-size: 70px;
}

.story {
    display: flex;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(97, 72, 8);
    font-size: 20px;
}

h3 {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(97, 72, 8);
}

/* Made a class so that it wont affect any other p tags */
.desc > p {
  /* border:4px solid blue; */
    column-count: 2;
    text-align: justify;
    margin: 20px 50px 10px;
    /* Added 10px margin from bottom to five space between text and footer */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* .order_button {
    margin: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}  */

 /* START OF FOOTER */
 .footer-container {
    /* border-top: 1px solid gray; */
    height: 110px;
    margin-bottom: 0;
  }

  .footer {
    border-top: 2px solid#e7e9eb;
    height: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: justify;
  }

  

  .footer-logos {
    /* border: 4px solid green; */
    display: flex;
    flex-direction: column;
    /* width:100px; */
    align-items: center;
    justify-content: center;
  }

  .footer-logos > img {
    width: 80px;
  }

  .follow-buttons {
    /* border:4px solid yellow; */
    width:90px;
    padding-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */

  }

  
  .follow-buttons a >img{
    width:15px;
  }

  .copyright {
    /* border: 4px solid red; */
    align-items: center;
    text-align: center;
    padding-right:40px;
  }

  /* END OF FOOTER */
