body {
  height: 100vh;
  background: black;
  display: grid;
  place-items: center;
}

.Earth {
  position: relative;
  width: 600px;
  height: 600px;
  filter: blur(0px);
  background: url("https://i.ibb.co/N9trt54/360-F-328896165-i0-TWGg-JTt-DWy-Ij-Kh-YKc-AUo-A0r-Ki-XYyx6.png");
  background-blend-mode: overlay;
  animation: anim 60s linear infinite;
  background-size: cover;
  border-radius: 50%;
  border: 0px solid white;
  filter: saturate(1.5);
  transform: rotate(-23.5deg);
}

.Earth:before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 602px;
  background: linear-gradient(calc( 90deg), rgba(0, 0, 0, 0.95) 50%, rgba(166, 224, 255, 0.2) 100%);
  z-index: 1000;
  border-radius: 50%;
}

.Earth:after {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 602px;
  background: linear-gradient(calc( 90deg), rgba(0, 0, 0, 0.9) 50%, rgba(166, 224, 255, 0.5) 100%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
}

@keyframes anim {
  0% {
    background-position: 0px;
  }
  50% {
    background-position: 720px;
  }
  100% {
    background-position: 1440px;
  }
}