* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background-repeat: repeat;
  background: #0c164ff0 url('./../images/background-stars.gif');
}

.story-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
}

.mascara {
  position: fixed;
  background: url('./../images/mascara.svg');
  height: calc(50vh - 28.125vw);
  width: 100%;
  z-index: 10000;
}
#maskTop {
  top: 0;
}
#maskBottom {
  top: calc(50vh + 28.125vw);
}

/* 8000x4500 ratio: 56.25% */
#container {
  position: absolute;
  top: calc(50vh - 28.125vw);
  width: 100vw;
  height: 56.25vw;

  color: white;
}

.room {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  z-index: 2;
}

.room .sleeping-man {
  position: absolute;
  top: 44%;
  right: 11%;
  width: 30%;
}
.room .inner-room {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.room .sleeping-float {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.planet-surface1 {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 100%;
  z-index: 3;
}

.sun {
  position: absolute;
  top: 0%;
  width: 100%;
  right: 0%;
}

.planet1 {
  position: absolute;
  top: 15%;
  width: 15%;
  right: 15%;
}

.planet2 {
  position: absolute;
  top: 15%;
  width: 15%;
  right: 22%;
}

.planet3 {
  position: absolute;
  top: 15%;
  width: 15%;
  right: 22%;
}

.planeta1 {
  position: absolute;
  top: 15%;
  width: 15%;
  right: 22%;
}

.planeta2 {
  position: absolute;
  top: 15%;
  width: 15%;
  right: 22%;
}

.planeta3 {
  position: absolute;
  top: 0%;
  width: 15%;
  right: 0%;
}

.planeta4 {
  position: absolute;
  top: 0%;
  width: 15%;
  right: 0%;
}

.planeta5 {
  position: absolute;
  top: 0%;
  width: 15%;
  right: 0%;
}

.moon {
  position: absolute;
  top: 15%;
  right: 0;
  width: 15.65%;
}

.shooting-star {
  position: absolute;
  top: 5%;
  width: 100px;
}

.text-wrapper {
  position: absolute;
  bottom: 1em;
  z-index: 4;
  display: flex;
  width: 60%;
  margin: 0, 0, 0, 0;
}

.text-wrapper figure {
  width: 6em;
  margin-right: 3%;
}

.text-wrapper figure img {
  width: 100%;
  margin-right: 3%;
}

.text-wrapper p {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 0 0;
}

p {
  font-size: 1.3em;
  margin: 0 0 0 0;
}

@media screen and (max-width: 74em) {
  p {
    font-size: 1.1em;
    margin: 0 0 0 0;
  }
}

@media screen and (max-width: 50em) {
  p {
    font-size: 0.8em;
    margin: 0 0 0 0;
  }
}

@media screen and (max-width: 30em) {
  p {
    font-size: 0.6em;
    margin: 0 0 0 0;
  }
}

.meteorit {
  position: absolute;
  top: 15%;
  width: 15%;
  right: 22%;
}

.astronaut {
  position: absolute;
  margin-left: 20%;
  margin-top: 12%;

  -webkit-animation-name: astronaut; /* Chrome, Safari, Opera */
  -webkit-animation-duration: 10s; /* Chrome, Safari, Opera */
  -webkit-animation-iteration-count: infinite; /* Chrome, Safari, Opera */
  -webkit-animation-direction: reverse; /* Chrome, Safari, Opera */
  animation-name: astronaut;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: ease-out;
}
/* Standard syntax */
@keyframes astronaut {
  0% {
    left: 0px;
    top: 8px;
  }
  15% {
    left: 4%;
    top: 8px;
  }
  25% {
    left: 4%;
    top: 0px;
  }
  35% {
    left: 0%px;
    top: -8px;
  }
  50% {
    left: 4%px;
    top: -8px;
  }
  65% {
    left: 0%px;
    top: -0px;
  }
  75% {
    left: -4px;
    top: 4px;
  }
  85% {
    left: -8px;
    top: -8px;
  }
  100% {
    left: 0px;
    top: 8px;
  }
}
/*# sourceMappingURL=style.css.map */
