html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-color: black;
  overflow-x: hidden;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.intro__background-earth {
  height: 130vh;
  width: 100vw;
  background-image: url("http://cdn.mos.cms.futurecdn.net/VdW4TCfoctFYDSXNSnkoAf.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.intro__localitation-1 {
  height: 15vw;
  width: 100vw;
  background: #000;
  color: #FFF;
  text-align: center;
}
.intro__localitation-1 h3 {
  font-size: 3em;
}
.intro__background-estelar {
  height: 100vw;
  width: 100vw;
  background-image: url("https://images.theconversation.com/files/314692/original/file-20200211-146714-1yjz3ie.jpg?ixlib=rb-1.1.0&rect=0%2C522%2C3562%2C1778&q=45&auto=format&w=1356&h=668&fit=crop");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.intro .strip {
  height: 300px;
  width: 100vw;
  overflow: hidden;
}
.intro__blur {
  position: relative;
  height: 300px;
  width: 100vw;
}
.intro__blur:hover .astronaut {
  filter: blur(4px);
}
.intro__blur:hover .sky {
  filter: blur(0px);
}
.intro__blur:hover .text:last-of-type {
  opacity: 1;
}
.intro__blur:hover .text:first-of-type {
  opacity: 0;
}
.intro__blur .astronaut {
  height: 200px;
  width: 200px;
  position: absolute;
  top: 0;
  left: 70vw;
  z-index: 1;
  animation: mymove infinite;
  animation-duration: 3s;
  transition-timing-function: ease-in;
  animation-fill-mode: forwards;
  transition: 0.4s;
}
@keyframes mymove {
  0% {
    top: 10vh;
  }
  50% {
    top: 13vh;
  }
  100% {
    top: 10vh;
  }
}
.intro__blur .sky {
  height: auto;
  width: 100vw;
  filter: blur(2px);
  background-size: cover;
  transition: 0.4s;
}
.intro__blur .text {
  height: 60px;
  width: 120px;
  border-radius: 50%;
  background: whitesmoke;
  border: 4px solid #000;
  position: absolute;
  top: 14vh;
  left: 60vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  padding: 5px;
  text-align: center;
  transition: 0.4s;
}
.intro__blur .text:first-of-type {
  opacity: 1;
  top: 7vh;
  left: 55vw;
  height: 30px;
}
.intro__cinetic {
  background-color: red;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 80vw;
  margin: 3vh auto;
  overflow: hidden;
  z-index: 3;
}
.intro__cinetic .cinetic__cinetic-lines {
  height: 80vh;
  width: 100vw;
  background-position: center;
  background-position: cover;
  margin: -20vh 0;
  z-index: 1;
  animation: cinetic-move infinite;
  animation-duration: 1s;
}
@keyframes cinetic-move {
  0% {
    transform: rotateY(0deg);
  }
  49.9% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
.intro__cinetic .cinetic__astronaut {
  max-height: 20vh;
  width: auto;
  position: absolute;
  margin-top: 0;
  filter: grayscale(100%);
  z-index: 2;
}

.info-bar__button {
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 11;
  height: 40px;
  width: 40px;
  cursor: pointer;
  font-size: 2em;
}
.info-bar__button span {
  color: red;
}
.info-bar__button .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  border-left: 2px solid red;
}
.info-bar__button .sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.info-bar__button .sidenav a:hover {
  color: #f1f1f1;
}
.info-bar__button .sidenav .closebtn {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
  color: red;
}
@media screen and (max-height: 450px) {
  .info-bar__button .sidenav {
    padding-top: 15px;
  }
  .info-bar__button .sidenav a {
    font-size: 18px;
  }
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(126, 126, 126, 0.2);
  border-radius: 10px;
  transition-duration: 1s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(170, 170, 170);
  background-color: red;
}
::-webkit-scrollbar-thumb:active {
  background: rgb(170, 170, 170);
  background-color: red;
}
::-webkit-scrollbar-track {
  background: rgba(75, 75, 75, 0.582);
}/*# sourceMappingURL=style.css.map */