:root {
  --bg: #000000;
  --fg: #111111;
  --muted: #666666;
  --accent: #222222;
  --rule: #e9e9e9;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  line-height: 1.4;
}

.maxcontainer {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.logo {
  width: calc(100% - 40px);
  display: flex;
  margin-bottom:40px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  padding:20px;
  background: #000;
  z-index: 500;
}

.logo img {
  width: 100%;
  max-width: 250px;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
h1 {
  font-size: 28px;
  letter-spacing: 0.4px;
  margin: 0;
  color: #fff;
}
.subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}
.btn {
  background: #ffe08a;
    color: #000;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
      text-align: center;
}
.btn span {
  color: #000 !important;
    font-size: 20px;
    width: 40px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 24px;
}
section {
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}
h2 {
  font-size: 18px;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffe08a;
}
h3 {
  color: #ffe08a !important;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--rule);
}
.name {
  flex: 1;
}
.price {
  white-space: nowrap;
  font-weight: bold;
  color: #ffe08a;
}

.price .non-style {
  color: #fff;
  font-weight: normal;
}
.allergen {
  font-size: 0.85em;
  opacity: 0.75;
  margin-left: 0.25em;
}
.note {
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
}
.legend {
  margin-top: 28px;
  padding-top: 8px;
  border-top: 2px solid var(--rule);
}
.legend h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.legend ul {
  columns: 2;
  column-gap: 24px;
}
.legend li {
  border: none;
  padding: 3px 0;
}
span,
h3,
.note,
.subtitle,
li {
  color: #fff;
}
footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--muted);
}
@media print {
  .page {
    padding: 16mm 12mm;
  }
}

.winter {
  background: #871906d0;
  padding: 5px 10px;
  z-index: 505;
}

a {
  position: relative;
  z-index: 10;
  color: #fff;
  text-decoration: none;
}

.scroll {
  cursor: pointer;
}

.winter .price, .winter h2 {
  color: #ffe08a;
}

.snowflake-area {
  position: fixed;
  width: 100%;
  height: 50%;
  z-index: 501;
  pointer-events: none;
}

.snowflake {
  position: absolute;
  top: -20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: rgba(255, 250, 250, 0.6);
  animation: snowfall 10s linear infinite;
  z-index: 10;
}

@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
  }
}

@keyframes sway {

  0%,
  100% {
    transform: translateX(calc(-1 * var(--sway-amplitude)));
    /* Sways left */
  }

  50% {
    transform: translateX(var(--sway-amplitude));
    /* Sways right */
  }
}