html, body {
  margin: 0;
  padding: 0;
}
canvas {
  display: block;
}

button {
  font-family: "Courier New";
  cursor: pointer;
  background-color: #754057;
  color: #F8CBDB;
  font-size: 20px;
  font-weight: 700;
  width: 225px;
  height: 50px;
  border-radius: 30px;
  border-color: white;
  transition-duration: 0.5s;
}

button:hover {
  background-color: #B09598;
  color: #754057;
}