body {
  background: linear-gradient(#125887, #000000 60%);
}

.main {
  background-image: url("./starts.svg");
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.content {
  width: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.text {
  color: #d9eff0;
  text-shadow: 2px 1px #0c121f;
  font-size: 3.2rem;
  font-family: "Changa One", cursive;
  padding: 0 1rem;
  transform: rotateX(30deg);
}

h2,
p {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  font-weight: 400;
  font-size: 15.78rem;
}

#astronauta {
  transform: translate(
    calc(calc(var(--mouse-x) / 25 * -1)),
    calc(calc(var(--mouse-y) / 45 * -1))
  );
  transition: transform ease-in-out;
}

#texto {
  transform: translate(
    calc(calc(var(--mouse-x) / 25 * 1)),
    calc(calc(var(--mouse-y) / 45 * 1))
  );
  transition: transform ease-in-out;
}

#fondo {
  background-position: calc(calc(var(--mouse-x) / 55 * 1))
    calc(calc(var(--mouse-y) / 75 * 1));
}
