/* styles.css */

body, html {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  margin: 0;
  overflow: hidden;
}

div {
  box-sizing: border-box;
}

.wheel-container {
  position: relative;
  width: 100vw;
  height: 100vw;
}

.inner-circle {
  width: 61%;
  height: 61%;
  background-image: url('../img/wheel_inner.png');
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  top: 68%;
  left: 51%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.outer-ring {
  width: 81%;
  height: 81%;
  background-image: url('../img/wheel_outer.png');
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  top: 28%;
  left: 10.5%;
  z-index: 0;
  transform-origin: center;
}

.hand {
  width:100vw;
  height: 120vw;
  position: absolute;
  background-image: url('../img/hand.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index:2;
}


