.text-center {
    background-image: url("/static/img/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#app {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}

.marker {
  position: absolute;
  width: 60px;
  left: 172px;
  top: -20px;
  z-index: 2;
}

.wheel {
  width: 100%;
  height: 100%;
}

.button {
  display: block;
  width: 250px;
  margin: 40px auto;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.blur {
  animation: blur 10s;
}

@keyframes blur {
  0% {
    filter: blur(1.5px);
  }
  80% {
    filter: blur(1.5px);
  }
  100% {
    filter: blur(0px);
  }
}

.blinking {
  animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
  0% {
    color: #FFF;
  }
  49% {
    color: #FFF;
  }
  60% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
  100% {
    color: #FFF;
  }
}

.btn-primary {
    color: #fff;
    background-color: #f73ee7 !important;
    border-color: #f73ee7 !important;
}

.btn-primary:hover {
    color: #fff !important;
}

a {
    color: #f73ee7 !important;
}

.shadow-sm {
    box-shadow: 0px 0px 0 rgba(0, 0, 0, .075) !important;
}

.wheelText {
font: 24px serif;
font-family: "Arial Black", Gadget, sans-serif;
font-weight: normal;
text-align: center;
text-shadow: 2px 2px #050000;
-webkit-appearance: none;
-webkit-box-shadow: 3px 3px 6px 6px #000000;
fill: rgb(255, 255, 255);
}


.container {
  background-color: rgba(0, 0, 0, 0.719);
  padding: 3vh;
  border-radius: 2vh;
}