*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fugaz One";
    font-family: "Fugaz One", Arial, Helvetica, sans-serif;

}
body{
  font-family: "Fugaz One";
    background-color: #2c6e49;
}

html{
  scroll-behavior: smooth;
  font-family: "Fugaz One", Arial, Helvetica, sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 0px 10px;
  align-items: center;
  color: #2c6e49;
  background-color: #F4FAFF;
  h1 {
      
      font-size: 2rem;
  }
  #menu {
      gap: 20px;
      list-style: none;
      display: flex !important;
      a {
          font-size: 1.2rem;
          color: #2c6e49;
      }
  }
  #ham {
      display: none;
  }

  #ham:hover {
      cursor: pointer;
  }
}

.content{
    padding: 50px 0;
    text-align: center;
    z-index: 6;
}

.button-row{
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  text-align: center;
  gap: 20px;
  padding: 10px 20px;
  font-size: 2vw;
  font-weight: 600;
  color:#2c6e49;
  margin-top: 30px;
  
}

.button-row a{
  text-decoration: none;
  padding: 1.5vw 2.5vh;
  background-color: #f5f3ec;
  color: #2c6e49;
  border-radius: 10px;
}

.button-row a:hover{
  text-decoration: none;
  padding: 2vw 3vh;
  background-color: #f5f3ec;
  font-size: 2.2vw;
  color: #2c6e49;
  border-radius: 10px;
  transition: ease-in .3s;
  transition: ease-out .5s;
}



.button-row a:visited{text-decoration: none; color: #2c6e49;}
.button-row a::before{text-decoration: none; color: #2c6e49;}

.title{
  
  font-size: 4.5vw;
  color: #f5f3ec;
  text-decoration: underline;
  margin: 20px;
}
.menu-body{
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: inherit;
  margin-left: 3vw;
  margin-right: 3vw;
  margin-top: 3vh;
  height: fit-content;
  background-color: #2c6e49;
  border: 10px solid #f5f3ec;
  color: #f5f3ec;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  
}
.breakfast{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 20px;
  
}

.breakfast h1{
 font-size: 3vw;
 margin: 15px;
}

.breakfast a{
  font-size: 2vw;
}

.Lunch{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 20px;
}

.Lunch h1{
 font-size: 3vw;
 margin: 10px;
 
}

.Lunch a{
  font-size: 2vw;
}

.Dinner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 20px;
}

.Dinner h1{
 font-size: 3vw;
 margin: 10px;
 
}

.Dinner a{
  font-size: 2vw;
}


  footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #2c6e49;
    color: #f5f3ec;
    height: 10vh;
}

footer a{
    color: #f5f3ec;
    font-size: 1.2vw;
    font-weight: 700;
    margin: 20px;
    text-decoration: none;

}

.contact{
    display: flex;
    flex-direction: column;
    
}

.contact h1{
    font-size: 1.4vw;
}

.contact a{
    font-size: 1.2vw;
}

.conatct a:hover{
    text-decoration: underline;
}

.location{
    display: flex;
    flex-direction: column;
    
}

.location h1{
    font-size: 1.4vw;
}

.location a{
    font-size: 1.2vw;
}

.location a:hover{
    text-decoration: underline;
}



/* phone */
@media only screen and (max-width: 767px) {
  #ham {
      background-color: #297045;
      color: #297045;
      display: flex !important;
      background: none;
      border: none;
      z-index: 100;
      overflow-y: hidden;
      flex-direction: column;
      gap: 6px;
      span {
          background-color:#297045;
          width: 40px;
          height: 8px;
          border-radius: 10px;
      }       
  }

  #ham.active {
      
      gap: 0;
      span:nth-child(1) {
          
          transform: rotateZ(45deg) translateY(3px);
      }
      span:nth-child(2) {
         
          transform: rotateZ(-45deg) translateY(-3px);
      }
  }

  #menu {
  z-index: 99;
  position: absolute;
  top: -150vh;
  left: 0;
  background-color: #F4FAFF;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
      li {
          margin: 0 20px 0 0;
          overflow-y: hidden;
          
          a {
              text-decoration: none;
              font-size: 3.5rem;
              font-weight: 600;
              color: #2c6e49;
          }
          a:hover{
              text-decoration: underline;
              transition: ease-in-out .3s;
          }
      }
  }

  #menu.active {
      color: #F4FAFF;
      top: 0;
      z-index: 99;
  }

  .button-row{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    text-align: center;
    gap: 20px;
    padding: 5px 5px;
    font-size: 2vw;
    font-weight: 600;
    color:#2c6e49;
    margin-top: 30px;
    
  }
  
  .button-row a{
    text-decoration: none;
    padding: 10px 10px;
    background-color: #f5f3ec;
    color: #2c6e49;
    font-size: 1rem;
    border-radius: 10px;
  }
  
  .button-row a:hover{
    text-decoration: none;
    padding: 2vw 3vh;
    background-color: #f5f3ec;
    font-size: 2.2vw;
    color: #2c6e49;
    border-radius: 10px;
    transition: ease-in .3s;
    transition: ease-out .5s;
  }

.button-row a:visited{text-decoration: none; color: #2c6e49;}
.button-row a::before{text-decoration: none; color: #2c6e49;}

  .title{
  
    font-size: 2rem;
    color: #f5f3ec;
    text-decoration: underline;
    
  }
  .menu-body{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: inherit;
    margin-left: 3vw;
    margin-right: 3vw;
    margin-top: 3vh;
    height: fit-content;
    background-color: #2c6e49;
    border: 10px solid #f5f3ec;
    color: #f5f3ec;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
  }

  .breakfast{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 20px;
    
  }
  
  .breakfast h1{
   font-size: 5vw;

  }
  
  .breakfast a{
    font-size: 3vw;
  }
  
  .Lunch{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    
  }
  
  .Lunch h1{
   font-size: 5vw;
   
   
  }
  
  .Lunch a{
    font-size: 3vw;
  }
  
  .Dinner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    
  }
  
  .Dinner h1{
   font-size: 5vw;
   
   
  }
  
  .Dinner a{
    font-size: 3vw;
  }
  footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #2c6e49;
    color: #f5f3ec;
    height: 5vh;
}

footer a{
    color: #f5f3ec;
    font-size: .3rem;
    font-weight: 300;
    margin: 10px;
    text-decoration: none;
}
}