body {
  margin: 0;
  overflow: hidden;
}

canvas {
  display: block;
  /* Disable default touch gestures */
  touch-action: none;
  /* Enable scrollbar when canvas overflows */
  overflow: auto;
}

.animal_village_btn {
  /* Blue */
  background-color: #0d73c7;
  border: none;
  color: white;
  padding: 6px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 90px;
  transition-duration: 0.4s;
  font-weight: 500;
  opacity: 0.9;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.animal_village_btn:hover {
  /* Blue */
  background-color: rgb(25, 79, 150);
  color: white;
}