* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fffbe8;
  color: #333;

  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><circle cx="20" cy="20" r="5" fill="%23FFD966"/><circle cx="20" cy="10" r="3" fill="white"/><circle cx="20" cy="30" r="3" fill="white"/><circle cx="10" cy="20" r="3" fill="white"/><circle cx="30" cy="20" r="3" fill="white"/></svg>') repeat;
  background-color: #fff6d5;
  background-size: 60px 60px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 220px;
  height: 220px;
  opacity: 0.15;
  pointer-events: none;
  background:
    radial-gradient(circle at center, #fff 35%, transparent 36%),
    radial-gradient(circle at 50% 15%, #ffd966 18%, transparent 19%);
  background-size: 40px 40px;
}

body::before {
  top: -40px;
  left: -40px;
  transform: rotate(-10deg);
}

body::after {
  bottom: -40px;
  right: -40px;
  transform: rotate(15deg);
}
@keyframes moveFlowers {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

body {
  animation: moveFlowers 100s linear infinite;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 8px 0;
}

.menu-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
}

.menu-wrapper h1 {
  text-align: center;
  margin-bottom: 20px;
}