* {
  margin: 0;
}

body {
  font-family: "Times New Roman", serif;
  padding-top: 20px;
  background-color: #fff8f0;
}

#menu {
  max-width: 50vw;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border: 2px solid black;
}

#menu-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.section-header h4 {
  margin-bottom: 5px;
  margin-left: 25px;
}

.section-header hr {
  flex-grow: 1;
  margin-top: 5px;
}

.section-content {
  margin-bottom: 25px;
}

.section-content-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.section-content-row span:nth-child(2) {
  font-size: 14px;
}

.section-content-row span.small {
  font-size: 12px;
}

#menu-footer {
  display: flex;
  justify-content: center;
}

button {
  background-color: #8b4513;
  color: white;
  padding: 10px 20px;
  border: none;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  opacity: 0.8;
  cursor: pointer;
}
