body,
html {
  height: 100%;
}
body {
  background-image: url('stgpow-7-1-.svg');
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
#loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  font-weight: semibold;
  z-index: 1000;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
#wheel {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle, #ff512b 0, #ff4181 35%, #806cff 100%);
  border: none;
  border-radius: 300px;
}
#wheel:after {
  content: '';
  background: white;
  border: 4px solid white;
  position: absolute;
  top: -7px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -7px;
  transform: rotate(45deg);
}
button {
  height: 60px;
  width: 60px;
  border: none;
  border-radius: 4px;
  margin-top: 20px;
  cursor: pointer;
  background: radial-gradient(circle, #ff512b 0, #ff4181 100%);
  color: #fff;
}
button:hover {
  background: #fafafa;
  border-style: solid;
  border-radius: 4px;
  border-color: #ff4181;
  color: #ff4181;
}
#result {
  font-size: 26px;
  margin-top: 20px;
  color: #ff4181;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bolder;
}
button {
  margin-right: 10px;
}
#buttons-container {
  display: flex;
}
#top-left-text {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 16px;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
}
#top-right-text {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
}
