* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

body {
    font-family: Open Sans;
   /* display: flex;*/
    justify-content: center;
    align-items: center;
    height: 100vh;
   /* overflow: hidden;*/
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(https://images.all-free-download.com/images/graphicwebp/abstract_background_311041.webp);
    background-size: cover;
}
.font {
    color: white;
    font-size: 14px;
}
.mainbox {
    position: relative;
    width: 350px;
    height: 350px;
    text-align: -webkit-auto;
}

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

.box {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  border: 10px solid #949090;
  overflow: hidden;
  transition: all ease-in-out 5s;
  transform: rotate(90deg);
}

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

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

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

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

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

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

.box2 .span3 {
  background-color: #00ff04;
}

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



.box1 .span1 b {
    position: absolute;
    top: 39%;
    right: 63%;
    transform: rotate(196deg);
    text-align: center;
}

.box1 .span2 b {
    position: absolute;
    top: 24%;
    right: 52%;
    transform: rotate(-131deg);
}

.box1 .span3 b {
    position: absolute;
    top: 18%;
    right: 33%;
    transform: rotate(-90deg);
}

.box1 .span4 b {
    position: absolute;
    top: 25%;
    right: 15%;
    transform: rotate(-51deg)
}

.box1 .span5 b {
    position: absolute;
    top: 38%;
    right: 5%;
    transform: rotate(-19deg);
}

.box2 .span1 b {
    position: absolute;
    top: 39%;
    right: 63%;
    transform: rotate(195deg);
}

.box2 .span2 b {
    position: absolute;
    top: 24%;
    right: 53%;
    transform: rotate(-130deg);
}

.box2 .span3 b {
    position: absolute;
    top: 18%;
    right: 34%;
    transform: rotate(270deg);
}

.box2 .span4 b {
    position: absolute;
    top: 25%;
    right: 15%;
    transform: rotate(308deg);
}

.box2 .span5 b {
    position: absolute;
    top: 39%;
    right: 6%;
    transform: rotate(-16deg);
    text-align: center;
}

.spin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 4px solid white;
  background-color: #ff5722;
  color: #fff;
  box-shadow: 0 5px 20px #000;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  z-index: 1000;
}

    .spin:active {
        width: 77px;
        height: 77px;
        font-size: 12px;
    }
    .spin:disabled {
        width: 75px;
        height: 75px;
        font-size: 12px;
    }

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

audio {
  display: none;
}

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

/*@media (max-width: 576px) {
  .mainbox {
    width: 100%;
    height: 50%;
  }
}*/
