#order-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin: auto;
  text-align: center;
}

#order-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vh;
}

#order-options > button {
  font-family: "IBM Plex Mono", monospace;
  background-color: #006d8f;
  color: white;
  border: none;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  width: 20vh;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

#order-options > button:hover {
  background-color: #ddd;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin: 0 auto;
  max-width: 80%;
  padding: 10px;
}

.product {
  border: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin: 10px 0;
  min-width: 80%;
}

.product img {
  max-width: 100px;
  margin-right: 20px;
}

/* .product h3 {
  margin: 0;
} */

#total-price {
  font-size: 18px;
  margin-top: 20px;
  align-self: end;
}
