body {
  margin: 0;
  background-color: #000;
}

.back-anchor {
  position: fixed;
  top: 0;
  right: 0;
  height: 10vh;
  width: 10vh;
  color: yellow;
  background-color: black;
  border: 4px solid darkred;
  border-radius: 50%;
  margin: 2vh;
  z-index: 2;
  text-align: center;
  text-decoration-color: red;
  font-size: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.strip {
  height: 300px;
  width: 80vw;
  margin: 3vh auto;
  background-color: #4090FF;
  overflow: hidden;
}

.cinetic {
  background-color: red;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60vmin;
  width: 60vw;
  width: 60vmin;
  margin: 3vh auto;
  overflow: hidden;
  z-index: 3;
  border-radius: 50%;
}
.cinetic__cinetic-lines {
  height: 80vh;
  width: 100vw;
  background-position: center;
  background-position: cover;
  margin: -20vh 0;
  z-index: 1;
  animation: cinetic-move ease-in-out infinite;
  animation-duration: 5s;
}
.cinetic__astronaut {
  max-height: 30vmin;
  width: auto;
  position: absolute;
  filter: grayscale(100%);
  z-index: 2;
  transform: rotate(30deg);
  top: 20vw;
}
.cinetic:hover .cinetic__astronaut {
  animation: mymove ease-in-out infinite;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

@keyframes mymove {
  0% {
    top: 20vmin;
    transform: scale(1) rotate(30deg);
  }
  40% {
    transform: scale(2) rotate(-30deg);
  }
  60% {
    top: 15vmin;
    transform: scale(0.5) rotate(-330deg);
  }
  100% {
    top: 20vmin;
    transform: scale(1) rotate(-690deg);
  }
}
@keyframes cinetic-move {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */