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

#cart-list {
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
}

h1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.cart-item {
  border: 1px solid #ddd;
  margin: 10px;
  padding: 15px;
  width: 200px;
  cursor: pointer;
  max-height: 50vh;
}

.cart-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.remove-button {
  background-color: red;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  border: none;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  width: 15vh;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.remove-button:hover {
  background-color: darkred;
}

#order-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: 15vh;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}
