* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, "Courier New", sans-serif;
  background-color: #000000;
  color: white;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0px;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 130px;
  transition: background-color 0.5s ease;
}

.navbar.scrolled {
  background-color: #000;
}

#clean-countdown {
  display: inline-flex;
  gap: 15px;
  font-family: 'Segoe UI', sans-serif;
}

#clean-countdown div {
  border: 2px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  width: 150px;
  text-align: center;
}

#clean-countdown span {
  font-size: 2.8rem;
  font-weight: 600;
}

#menu-story,
#menu-order {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

#menu-story {
  justify-self: end;
  margin-right: 40px;
}

#menu-order {
  justify-self: start;
  margin-left: 40px;
}

#menu-story a {
  text-decoration: none;
  color: #ffcc00;
}

#menu-story a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

#menu-order a {
  text-decoration: none;
  color: #ffcc00;
}

#menu-order a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.anchor-target {
  scroll-margin-top: 147px;
}

}