html{
  background: rgb(165,37,151);
  background: linear-gradient(0deg, rgba(165,37,151,1) 0%, rgba(255,144,0,1) 100%);
  height: 125vh;
}
#app {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}

.display{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;height: 50px;
  border: 1px solid #FFF;
  color: #fff;
  padding: 5px;
  border-radius: 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  margin: 10px auto;
}
.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);
  }
}

/*** 
LinkResposta
****/
#DivLink{
  display: none;
  text-decoration: none;
  padding: 5px; color:#fff;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  display: block;
  margin: 5px auto; width: 250px;
}
.LinkResposta{
  display: inline-block;
  text-decoration: none;
  padding: 10px; color:#fff;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  display: block;
  font-weight: bold;
  margin: 0 35px;
  transition: .5s;  

}

.LinkResposta:hover{
  color: #151515;
}
