#canvas {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  
  #container {
    width: 20%;
    height: 100%;
    position: absolute;
    left: 70px;
    top: 50px;
    font-size: 28px;
  }

  #text {
    color: rgba(0, 0, 0, 0.3);
    font-size: 85px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    width: 1000px;
    position: absolute;
    top: 70px;
    left: 390px;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 110%;
    height: 10px;
    background: #f5f7eb;
    outline: none;
    opacity: 0.6;
    -webkit-transition: .1s;
    transition: opacity .1s;
  }
  
  .slider:hover {
    opacity: 0.8;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 19px;
    background: #d7b3e3;
    cursor:pointer;
    }
  
  .emoji {
    opacity:0.7;
  }


button {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  border-width: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}


button:hover,
button:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 10px;
  color: rgba(0, 0, 0, 0.3);
}

button:hover {
  transform: translateY(-0.8px);
}

button:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 1px 2px;
  color: rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

