body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 600px;
}

button {
  width: 100px;
}

#winner {
  margin-top: 24px;
}

.container {
  position: relative;
  border: 2px solid black;
}

.wheel-container {
  width: 500px;
  height: 300px;
}

.pointer {
  position: absolute;
  top: calc(150px - 14px);
  left: 250px;
  visibility: hidden;
}

.dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.dialog-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
