body {
  background-color: rgb(239, 133, 133);
}
.container {
  margin-top: 30px ;
  margin-left:90px ;
  height: 500px auto;
  width: 1000px;
  border: 5px solid rgb(210, 24, 55);
  padding: 20px;
}
#top-text {
  color: white;
  font-size: 30px;
  text-align: center;
  background-color:rgb(245, 179, 179);
  margin-top: 0px;
  margin-bottom: 0px;
}
#options{
  color: black;
  margin: 20px auto;
  width: 100%;
  cursor: pointer;
  background-color: rgb(244, 229, 202);
  margin-bottom: 0px;
  padding-top: 5px ;
  padding-bottom: 5px;
}
.flex-text {
  font-size: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 20px 100px 10px;
}
.display-screen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  width: 90%;
  margin-bottom: 0px;
}

.price, .quantity, .amount {
  text-align: center;
  border: 2px solid black;
  height: 40px;
  width: 150px;
  line-height: 40px;
  background-color: #fff;
  margin-bottom: 0px;
}

#quantity {
  border: none;
  text-align: center;
  width: 80%;
  height: 50%;
  cursor: pointer;
  
}
.add-button{
    display: inline-block;
    margin-left: 960px;
    background-color: blanchedalmond;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid black;
    padding: 5px;
    margin-top: -150px;
    margin-bottom: 5px;
  }
  .add-button:active{
    background-color: rgb(196, 169, 128);
    cursor: pointer;
  }
  .line3{
    height: 2px;
    width: 100%;
    margin-top: 0px;
    padding: 0px;
    background-color: white;
  }
  .totel-text{
    color: white;
    display: inline-block;
    margin-top: 10px;
    font-size: 30px;

  }
  #totalAmount{
    color: white;
    font-weight: bold;
    font-size: 30px;
  }
  #itemsList{
    display:flex;
    flex-direction: column;
    color: white;
    font-size: 20px;
    padding: 0px;
  }
  #print{
    background-color: black;
    font-family: Arial;
    width: 100%;
    color: white;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 5px;
    cursor: pointer;
  }
  #print:active{
   
    background-color: rgb(31, 29, 29);
  }