@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

html {
  height: 100%;
}

.wrapper {
  display: flex;
  height: 100%;
  background-color: #00214a;
  justify-content: center;
  align-items: center;
}

.svg-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
}

.svg-wrapper svg {
  position: absolute;
  top: 0;
  width: 100%;
}

.svg-wrapper .moon-satelite {
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.8, 0.5, 0.2);
  animation-timing-function: cubic-bezier(0.5, 0.8, 0.5, 0.2);
}