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;
}

.blur {
  position: relative;
  height: 300px;
  width: 80vw;
}
.blur:hover .astronaut {
  filter: blur(4px);
}
.blur:hover .sky {
  filter: blur(0px);
}
.blur:hover .text:last-of-type {
  opacity: 1;
}
.blur:hover .text:first-of-type {
  opacity: 0;
}
.blur .astronaut {
  height: 200px;
  width: 200px;
  position: absolute;
  top: 0;
  left: 50px;
  z-index: 1;
  transform: rotateY(180deg);
  transition-timing-function: ease-in;
  transition: 0.4s;
  animation: mymove infinite;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes mymove {
  0% {
    top: 10vh;
  }
  50% {
    top: 13vh;
  }
  100% {
    top: 10vh;
  }
}
.blur .sky {
  height: auto;
  width: 80vw;
  filter: blur(2px);
  background-size: cover;
  transition: 0.2s;
}
.blur .text {
  height: 60px;
  width: 120px;
  border-radius: 50%;
  background: whitesmoke;
  border: 4px solid #000;
  position: absolute;
  top: 14vh;
  left: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  padding: 5px;
  text-align: center;
  transition: 0.4s;
}
.blur .text:first-of-type {
  opacity: 1;
  top: 7vh;
  left: 320px;
  height: 30px;
}/*# sourceMappingURL=style.css.map */