.spinning-wheel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Adjust the height as needed */
}

#spinning-wheel {
  width: 200px;
  height: 200px;
  background-image: url('https://png.pngtree.com/png-clipart/20210311/original/pngtree-prize-wheel-illustration-jackpot-png-image_6036817.png');
  background-repeat: no-repeat;
  background-size: contain;
  animation: spin 2s linear infinite;
}
