* {
    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: whitesmoke;
    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;
  }
  




















  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
}

.bannerText {
    max-width: 40%;
}

.bannerImg {
    width: 50%;
    height: auto;
}
.bannerImg img {
    width: 100%;
    height: auto; 
    max-width: 800px;
    max-height: 1000px; 
}

.icons {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin-top: 20px; 
    margin-left: 20%;
}

.controls {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.controls li {
    margin-right: 10px; /* Adjust spacing between buttons */
}

#prevButton,
#nextButton {
    text-decoration: none;
    color: #333;
    font-size: 24px;
}

#prevButton {
    order: 1; /* Moves the previous button to the left */
}

#nextButton {
    order: 2; /* Moves the next button to the right */
}

.banner{
  margin-left: 4%;
}









/* footer */
footer {
  background-color: #333;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  /* height: 35vh; */
}

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; */
}