* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  height: 100vh;
  background: linear-gradient(135deg, #c3a3f1, #6414e9);
}
.wrapper {
  width: 90%;
  max-width: 34.37em;
  max-height: auto;
  background-color: #ffffff;
  background-color: #000000;
  background-image: url("001-subtle-light-pattern-background-texture.jpg");
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  padding: 3em;
  border-radius: 1em;
  box-shadow: 0 4em 5em rgba(27, 8, 53, 0.2);
  margin-top:20px;
    z-index:2;
}
 
.container {
  position: relative;
  width: 100%;
 
}
.containerwheel {
  position: absolute;
  width: 100%;
  
}

#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: 26%;
  width: 26%;
  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;
}



.spinarrow {
  position: absolute;
  width: 4em;
  top: 42.6%;
  right: -8%;
}
#final-value {
  font-size: 1.5em;
  text-align: center;
  margin-top: 1.5em;
  color: #202020;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .wrapper {
    font-size: 12px;
  }
  .spinarrow {
    right: -5%;
  }
}

.arrow{
	position: absolute;
	top:0;
	left:50%;
	transform: translateX(-50%);
	color:#fff;
}

.arrow::before{
	content:"\1F817";
	font-size:50px;
}

#spin{
	position: absolute;
	top:49%;
	left:51%;
	transform:translate(-50%,-50%);
	z-index:10;
	background-color: #e2e2e2;
	background-image: radial-gradient(circle, #363434, #505050, #9b9696);
	text-transform: uppercase;
	border:8px solid #dfdfdf;
	font-weight:bold;
	font-size:20px;
	color:#ffffff;
	width: 80px;
	height:80px;
	font-family: sans-serif;
	border-radius:50%;
	cursor: pointer;
	outline:none;
	letter-spacing: 1px;
  
}

#spin-arrow{
max-width: 80px;
    width: 80px;
    max-height: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    	top:44.8%;
	left:46.7%;

	transform: rotate(46.5deg);
	z-index:8;
  
}

#spin-arrow:after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 48px;
    max-width: 48px;
    height: 28px;
    max-height:28px;
    background-color: #cdcdcd;
    box-shadow: -2px -2px 10px rgba(0,0,0,.25);
}