* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  
  html {
    height: 100%;
    overflow: hidden;
  }
  
  body {
    margin: 0;
    padding: 0;
    perspective: 1px;
    transform-style: preserve-3d;
    height: 100%;
    background-color: white;
    overflow-y: scroll;
    overflow-x: hidden;
    font-family: Nunito, Arial, sans-serif;
    /* Added fallback fonts */
  }
  
  h1 {
    font-size: 250%;
  }
  
  p {
    font-size: 140%;
    line-height: 150%;
    color: #333;
  }
  
  /* Navigation bar */
  #navbar {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
  }
  
  #navbar a {
    color: black;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
  }
  
  #navbar .left a {
    margin-right: 20px;
    font-size: 20px;
    vertical-align: middle;
  }
  
  #navbar .right a {
    margin-left: 20px;
    font-size: 20px;
    vertical-align: middle;
  }
  
  #navbar .left img {
    height: 40px;
  }
  
  #navbar .left a:hover:not(:first-child),
  #navbar .right a:hover {
    background-color: rgba(255, 0, 0, 0.8);
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  /* popup cart */
  .addtocart-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .addtocart-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
  }
  
  .close-button {
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-button:hover,
  .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .delivery-button,
  .pick-up-button,
  .dine-in-button {
    display: block;
    width: 30%;
    margin-top: 10px;
    padding: 10px;
    font-size: 20px;
    margin: 10px auto;
  }







  .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 93vh; 
}

.banner img {
    max-width: 100%; /* Ensure the image doesn't exceed the container */
    max-height: 100%; /* Ensure the image doesn't exceed the container */
    width: 80%; /* Allow the image to adjust its width proportionally */
    height: 92vh; /* Allow the image to adjust its height proportionally */
}









/* footer */
footer {
    background-color: #333;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    /* height: 35vh; */
    margin-top: 2%;
  }
  
  footer img {
    height: 30px;
    margin-right: 10px;
  }
  
  .column {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .column h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
  }
  
  .column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .column ul li {
    margin-bottom: 8px;
  }
  
  .column ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
  }
  
  .column ul li a:hover {
    text-decoration: underline;
  }
  
  .store-icons img {
    height: 70px;
    /* margin-right: 10px; */
  }