html, body {
  background: white;
  margin: 0;
}

body {
  height: 100vh;
}

* {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
}
h1 b {
  font-weight: 900;
}

.refresh_page {
  background-color: #FC6152;
}

.wrapper {
  padding: 25px;
}

#app {
  height: 0;
  width: 0;
  overflow: hidden;
  background: black;
}

.btn {
  background: black;
  color: white;
  padding: 15px 20px;
  margin-top: 25px;
  font-size: 48px;
  border-radius: 13px;
  display: inline-block;
}

.the_wheel {
  position: relative;
  width: 700px;
  height: 700px;
  padding: 50px 20px;
}
.the_wheel #prizePointer {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  z-index: 9;
}

#button-spin {
  position: absolute;
  bottom: 65px;
  right: 30px;
  background: #FC6152;
  border: 2px solid #182E4E;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  transition: all 1s;
  outline: none;
}

#winmodal {
  display: none;
  position: absolute;
  overflow: hidden;
  left: 0px;
  top: 0px;
  height: 100vh;
  z-index: 999;
  width: 100vw;
}
#winmodal .close {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 30px;
  background: black;
}
#winmodal h1, #winmodal h2 {
  text-align: center;
  color: white;
  opacity: 1;
  font-weight: 800;
  z-index: 9999;
  position: absolute;
  width: 100%;
  text-shadow: #000 1px 0 4px;
}
#winmodal h2 {
  top: 36%;
  font-size: 40px;
}
#winmodal h1 {
  top: 46%;
  font-size: 80px;
  text-transform: uppercase;
}
#winmodal .bga {
  opacity: 0.7;
  animation: gradient 15s ease infinite;
  background: linear-gradient(-45deg, #FCEC15, #FC6152, #FC6152, #FCEC15);
  background-size: 400% 400%;
  position: absolute;
  top: 0;
  opacity: 0.7;
  left: 0;
  width: 100vw;
  height: 100vh;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}/*# sourceMappingURL=styles.css.map */