body {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  background: #f2f2f2;
  margin-top: 50px;
}

.wheel-container {
  position: relative;
  display: inline-block;
}

#wheel {
  border: 10px solid #333;
  border-radius: 50%;
}

#spin {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 18px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#spin:hover {
  background: #ff4500;
}

#result {
  font-size: 22px;
  margin-top: 25px;
  font-weight: bold;
}
