.mainbox {
  position: relative;
  width: 450px;
  height: 450px;
}

.mainbox:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(./arrow-bottom.png) no-repeat;
  background-size: 5%;
  left: 5%;
  top: 48%;
  transform: rotate(90deg);
}

.box {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: all ease-in-out 5s;
  transform: rotate(90deg);
  box-shadow: rgb(219 12 62 / 89%) 0px 2px 10px 0px, rgb(223 67 67) 0px 5px 36px 0px;
}

.mainbox span {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
}

.span1 {
  clip-path: polygon(0 17%, 0 50%, 50% 50%);
  background-color: #e24244;
}

.span2 {
  clip-path: polygon(0 17%, 30% 0, 50% 50%);
  background-color: unset;
}

.span3 {
  clip-path: polygon(30% 0, 71% 0, 50% 50%);
  background-color: #ff3334;
}

.span4 {
  clip-path: polygon(71% 0, 100% 18%, 50% 50%);
  background-color: #ff3334;
}

.span5 {
  clip-path: polygon(100% 18%, 100% 50%, 50% 50%);
  background-color: unset;
}

.box2 .span3 {
  background-color: #3d0017;
}

.box2 {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

.font {
  color: white;
  font-size: 20px;
}

.box1 .span1 b {
  position: absolute;
  top: 36%;
  right: 62%;
  transform: rotate(200deg);
  text-align: center;
  font-size: 14px!important;
}

.box1 .span2 b {
  position: absolute;
  top: 20%;
  right: 55%;
  transform: rotate(-130deg);
  font-size: 15px;
}

.box1 .span3 b {
  position: absolute;
  top: 14%;
  right: 36%;
  transform: rotate(-90deg);
  font-size: 14px;
}

.box1 .span4 b {
  position: absolute;
  top: 20%;
  right: 15%;
  transform: rotate(-45deg);
  font-size: 14px;
}

.box1 .span5 b {
  position: absolute;
  top: 35%;
  right: 5%;
  transform: rotate(-15deg);
  text-align: center;
  font-size: 14px;
}

.box2 .span1 b {
  position: absolute;
  top: 38%;
  right: 62%;
  transform: rotate(200deg);
  font-size: 12px;
}

.box2 .span2 b {
  position: absolute;
  top: 20%;
  right: 56%;
  transform: rotate(-130deg);
  text-align: center;
  font-size: 14px;
}

.box2 .span3 b {
  position: absolute;
  top: 14%;
  right: 34%;
  transform: rotate(270deg);
  font-size: 11px;
}

.box2 .span4 b {
  position: absolute;
  top: 22%;
  right: 14%;
  transform: rotate(310deg);
  font-size: 12px;
}

.box2 .span5 b {
  position: absolute;
  top: 35%;
  right: 10%;
  transform: rotate(-20deg);
  text-align: center;
  font-size: 16px;
}

.spin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
  z-index: 1000;
}

.spin:active {
  width: 70px;
  height: 70px;
  font-size: 20px;
}

.mainbox.animate:after {
  animation: animateArrow 0.7s ease infinite;
}

audio {
  display: none;
}

@keyframes animateArrow {
  50% {
    right: -50px;
  }
}

@media (max-width: 576px) {
  .mainbox {
    width: 80vw;
    height: 80vw;
  }
}

.bg_wheel {
  height: 80%;
  width: 100%;
  position: absolute;
  background-image: url("../img/landing2.svg");
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #151d2c;
}

.bg_wheel > .flower-top-right {
  width: 6%;
  position: absolute;
  top: 0;
  right: 0;
}

.bg_wheel > .flower-bottom-right {
  width: 6%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.center-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 85px;
}

@media (max-width: 768px) {
  .bg_wheel {
    height: 1000px!important;
  }
}

