body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background: url('/assets/images/background-wheel.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* Sets the background image for the wheel */
.the_wheel {
  background-image: url(/assets/images/wheel.gif);
  background-repeat: no-repeat; /* Ensure that background does not repeat */
  background-position: center; /* Ensure image is centred */
  width: 512px; /* Width and height should at least be the same as the canvas */
  position: relative;
  overflow: hidden;
  background-size: contain;
}
