html, body {
    margin: 0;
    padding: 0;
}

.website-header {
  width: 100%;
  height: clamp(100px, 5vw, 240px);
  margin: 0 auto;
  background-color: white;
  color: #ff7b7d;
  font-family: 'Parisienne';
  text-align: center;
  padding: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 998;
  position: relative;
}
.header-center {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto; /* centers the group */
}
.website-header img {
  width: 60px;
  height: 60px;
}
.desk-nav {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  margin: auto;
  padding-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 997;
  position: relative;
  gap: 15px;
}
.desk-nav a,
.drop-nav-text {
  text-decoration: none;
  font-size: 18px;
  color: #ff7b7d;
  font-family: 'Montserrat';
}
.drop-nav-menu a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #ff7b7d;
  font-family: 'Montserrat';
  padding: 5px;
}
.warning-header {
  width: 100%;
  margin: 0 auto;
  background-color: #ff7b7d;
  color: white;
  font-family: 'Montserrat';
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 1;
}
.dropdown-nav {
  position: relative;
  display: inline-block;
}
.drop-nav-text {
  cursor: pointer;
  font-size: 18px;
  padding: 5px 10px;
}
.drop-nav-menu {
  display: none;
  position: absolute;
  background: white;
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
}
.dropdown-nav.open .drop-nav-menu {
  display: block;
}
@media (min-width: 600px) {
  .cart-img {
    display: none;
  }
}
@media (max-width: 600px) {
  .warning-header h3 {
    font-size: 12px;
  }
  .cart {
    display: none;
  }
  .drop-nav-menu {
    left: -40px;
  }
  .cart-img {
    margin-left: auto;
  }
}
.website-header {
  position: relative;
}

.cart-img {
  position: absolute;
  right: 20px; /* adjust as needed */
  top: 50%;
  transform: translateY(-50%);
}
.under-box {
   background: #ff7b7d;
}
.ordering {
  background: white;
  margin: 0 auto;
  height: 80%;
  margin-top: 50px;
  font-family: 'Montserrat';
  width: 80%;
  outline: 2px solid #ff7b7d;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 5px;
  justify-content: center;
}