body {
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #d4cdc5;
}

canvas {
  width: 350px !important;
  height: auto;
}

.wrapper {
  width: 250px;
}

#button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

#button2 {
  position: fixed;
  right: 40px;
  bottom: 20px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

#button img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}

#button2 img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

#button:hover {
  transform: scale(1.3);
}

#button:focus {
  outline: none;
}

* {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}