
#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 {
  text-align: center;
  text-decoration: none;
  font-family: arial;
  font-size: 30px;
  font-weight: 600;
  background: -webkit-linear-gradient(#fff, #ee5100, #F3854C, #ee5100, #914f2d);
  box-shadow: 0 0 6px 3px #FFF;
  border-radius: 35px !important;
  color: #FFF;
  display: inline-block;
  width: 200px;
  padding: 15px;
  margin: 15px;
  animation: radial-pulse 1s infinite;
}

.button:hover {
  color: #fff;
  margin: 20;
  box-shadow: 0 0 6px 3px #ffffff;
  border-radius: 35px !important;
  background:-moz-linear-gradient(top, #000 0%, #26c1ef 100%);
  background:-webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 100%, #b29448 100%);
  background:-o-linear-gradient(top, rgba(0, 0, 0, 0.8) 100%, #ffd700 100%);
  background:-ms-linear-gradient(top, rgba(0, 0, 0, 0.8) 100%, #ffd700 100%);
  background: linear-gradient(to bottom, rgba(99, 221, 241, 0.18) 100%, #13789e 100%);
  padding: 15px;
}

@keyframes radial-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(249,112,112, 0.75);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(249,112,112, 0);
  }
}

.btn{
  text-align: center;
  text-decoration: none;
  font-family: arial;
  font-size: 30px;
  font-weight: 600;
  background: -webkit-linear-gradient(#fff, #43002b, #b302bf, #43002b, #b302bf);
  box-shadow: 0 0 6px 3px #FFF;
  border-radius: 35px;
  color: #FFF;
  display: inline-block;
  width: 200px;
  padding: 15px;
  margin: 15px;
  animation: radial-pulse 1s infinite;
}
.btn:hover{
      color: #fff;
      box-shadow: 0 0 6px 3px #ffffff;
      background: -webkit-linear-gradient(#b302bf, #43002b, #b302bf, #43002b, #fff);
      padding: 15px;
}

.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;        }
}

.wheelText {
  font: 16px serif;
  font-family: "Arial Black", Gadget, sans-serif;
  font-weight:normal;
  text-align: center;
  /*text-shadow: 0 0 3px #555555, 0 0 5px #555555;*/
  text-shadow: 2px 2px #000000;
  -webkit-appearance: none;
  -webkit-box-shadow: 3px 3px 6px 6px #000000;
  fill: #E8CCCC;
}
