body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
  font-family: sans-serif;
  padding: 20px;
}

.menu {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  background-color: burlywood;
  padding: 20px;
}

h1, h2 {
  font-family: Impact, serif;
  text-align: center;
}

h1 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

h2 {
  font-size: 30px;
}

.established {
  font-style: italic;
  text-align: center;
}

p {
  text-align: center;
}

img {
  display: block;
  margin: 0 auto;
  width: 50px;
}

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

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

/* Item layout */
.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

.item p {
  font-size: 18px;
  margin: 5px 0;
}

.item-name {
  text-align: left;
  width: 75%;
}

.price {
  text-align: right;
  width: 25%;
}

/* Footer */
footer {
  font-size: 14px;
  text-align: center;
}

.address {
  margin-bottom: 5px;
}

a {
  color: black;
  text-decoration: none;
}

a:visited {
  color: black;
}

a:hover {
  color: brown;
}

a:active {
  color: brown;
}

