body {
  background: black;
}

.image {
  background-image: url(earth.webp);
  background-size: contain;
  width: 500%

  display: block;
  margin: 0 auto;
  
  position: absolute;
  left: 800px;
  top: 400px;
  
  animation-name: rotate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 360s
}

@keyframes rotate {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
