body{background: #000;}
.moving-mouse-holder {
    margin: auto;
    margin-top: 60px;
    width: 170px;
  }
  
  .moving-mouse-holder .mouse {
    width: 26px;
    height: 40px;
    position: relative;
    right: 0;
    border-radius: 18px;
    border: 2px solid #FFF;
  }
  
  .moving-mouse-holder .mouse-button {
    background-color: #FFF;
    width: 4px;
    height: 10px;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    margin: 0 0 0 -2px;
    animation: mouse-scroll 1s infinite alternate;
  }
  
  .moving-mouse-holder .text {
    margin-top: -30px;
    margin-left: 40px;
    color: #FFF;
    font-size: 12px;
    line-height: 1em;
  }
  
  @keyframes mouse-scroll {
    to {
      transform: translate(0, 6px) scale(1, 0.8);
    }
  }