* {
  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;
  align-items: center;
  justify-content: center;
  height: 55vh; 
  margin-top: 30px;
  /* border: 2px solid red !important; */
}

.warning-content {
  margin-top: 90px; 
  width: 80%; 
  max-width: 800px; 
  text-align: center; 
}


h1 {
  font-weight: 100;
  font-size: 3rem; 
  color: #36B;
}

.big-gear {
  fill: #EEEEF4;
  stroke: #36B;
}

.small-gear {
  fill: #36B;
  stroke: #EEEEF4;
}

p {
  
  font-size: 30px; 
  margin: 1rem 0; 
}






/* footer */
footer {
  background-color: #333;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5%;
}

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; */
}
