.planet-container .planet {
  border-radius: 50%;
  width: 100%;
  background: linear-gradient(150deg, #A37DCE, #5F2093, rgba(35, 35, 35, 0));
  height: 100%;
}

.planet-container {
  background: linear-gradient(150deg, #5F2093, rgba(35, 35, 35, 0), rgba(35, 35, 35, 0));
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  padding: 20px;
  border-radius: 50%;
  -webkit-animation: jump 6s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
          animation: jump 6s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.planet-container .planet:before, .planet-container .planet:after {
  content: '';
  display: block;
  width: 300px;
  height: 40px;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid #C099EF;
  border-left: 10px solid #C099EF;
  border-right: 10px solid #C099EF;
  border-radius: 100%;
  left: -40px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  top: 90px;
}

.planet-container .planet:before {
  z-index: -1;
  width: 300px;
  border-top: 10px solid #C099EF;
}

.planet-container:before {
  content: "";
  top: 40px;
  border-radius: 5px;
  position: relative;
  left: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 10px;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  display: block;
}

.planet-container:after {
  position: relative;
  display: block;
  top: -185px;
  left: 65px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
}

body {
  background-color: #232323;
}

@-webkit-keyframes jump {
  0% {
    top: 50%;
  }
  50% {
    top: 45%;
  }
  100% {
    top: 50%;
  }
}

@keyframes jump {
  0% {
    top: 50%;
  }
  50% {
    top: 45%;
  }
  100% {
    top: 50%;
  }
}
