html, body {
  margin: 0;
  padding: 10px;
  font-family: 'Optima', sans-serif;
}
canvas{
  border-radius: 10px;
}
.container {
  width: 100%;
  height: 100%;
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.description1{
  padding: 0 10px 10px 10px;
  background-color: #D8A48F;
  border-radius: 10px;
}
.description1 p {
  font-size: 18px;
}
.description1 h2 {
  text-decoration: underline;
}
/*----------------------Slider------------------------*/
.slider-container{
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-gap: 30px;
}
#sliderAmount{
  border: 1px solid black;
  width: 30px;
  background: #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #8ecae6; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #8ecae6; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
/*-----------------------Button------------------------*/
.button-container{
  margin: auto;
}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #8ecae6;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

