* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  height: 100vh;
  position: relative;
  background: linear-gradient(152deg, #15403B, #000);
}
.wrapper {
    width: 100%;
    max-width: 34.37em;
    border-radius: 1em;
    color: white;
}
.container {
  position: relative;
  left: -40%;
  width: 100vw;
  height: fit-content;
}
#wheel {
  max-height: inherit;
  width: inherit;
  top: 0;
  padding: 0;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.spin-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 0;
  width: 25%;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: radial-gradient(#fdcf3b 50%, #d88a40 85%);
  color: #c66e16;
  text-transform: uppercase;
  font-size: 1.8em;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.wrapperimg {
  position: absolute;
  width: 6em;
  top: 50%;
  transform: translate(-50%, -50%);
  right: -8%;
}
#final-value {
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  font-weight: 500;
  
}
@media screen and (max-width: 768px) {
  .wrapper {
    font-size: 12px;
  }
  .wrapperimg {
    right: -20%;
  }
}
.user_guide {
  display: none;
  height: fit-content;
  width: 350px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.562);
  box-shadow: 50px 100px rgba(0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 0 0 50px rgba(8, 7, 16, 1);
  position: relative;
  padding: 30px 25px;
}
.user_guide * {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}
.user_guide>div {
  width: 90%;
  margin: auto;
  background-color: #ffcc3361;
  border: 1px white solid ;
  border-radius: 5rem ;
  padding: 0 .5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  text-align: left;
  span{
    width: 100%;
    padding-left: 1rem;
    font-size: .8rem;
  }
}.user_guide>div>i{
  font-size: 2rem;
  color: #FFCC33;
}
form {
  display: none;
  height: fit-content;
  width: 350px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.562);
  box-shadow: 50px 100px rgba(0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(8, 7, 16, 1);
  padding: 30px 25px;
}
form * {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}
form h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
}
form h3 span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #e5e5e5;
}
label {
  display: block;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 500;
}
input {
  display: block;
  height: 50px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 5px;
}
::placeholder {
  color: #e5e5e5;
}
.form-btn {
  margin: 40px;
  width: 250px;
  background-color: #ffffff;
  color: #080710;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  background: radial-gradient(#fdcf3b 50%, #d88a40 85%);
  color: #c66e16;
  animation: pulse 1s infinite;
}