body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
  font-family: 'Arial', sans-serif;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
}

h1, h2 {
  font-family: Impact, serif;
  margin: 10px 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.established {
  font-style: italic;
  margin-bottom: 20px;
}

h1, h2, p {
  text-align: center;
}

.menu {
  width: 90%;
  max-width: 600px;
  background-color: burlywood;
  margin: 0 auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

img {
  display: block;
  margin: 15px auto;
  max-width: 80px;
  border-radius: 5px;
}

hr {
  height: 2px;
  background-color: brown;
  border: none;
  margin: 20px 0;
}

.bottom-line {
  margin-top: 30px;
}

.item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted #8B4513;
  transition: background-color 0.3s, transform 0.2s;
}

.item:hover {
  background-color: rgba(255,255,255,0.3);
  transform: scale(1.02);
  cursor: pointer;
}

.flavor, .dessert {
  text-align: left;
  flex: 3;
  margin: 0;
}

.price {
  text-align: right;
  flex: 1;
  margin: 0;
  font-weight: bold;
}

footer {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

/* Optional mobile responsiveness */
@media (max-width: 400px) {
  .menu { padding: 15px; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
}
