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

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

h2 {
  font-size: 30px;
}

.established {
  font-style: italic;
}

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

/* MENU BOX */
.menu {
  width: 80%;
  max-width: 500px;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border-radius: 10px;
}

/* IMAGE */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* FONT STYLE */
h1,
h2 {
  font-family: Impact, serif;
}

/* MENU ITEMS */
.item {
  width: 100%;
}

.item p {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.flavor,
.dessert {
  text-align: left;
  width: 75%;
  vertical-align: top;
}

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

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

address {
  font-style: normal;
}

.address {
  margin-bottom: 5px;
}

/* LINKS */
a {
  color: black;
  text-decoration: none;
}

a:visited {
  color: black;
}

a:hover,
a:active {
  color: brown;
}
