@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(#2b1055, #7597de);
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

section img {
position: absolute;
top: 0;
left: 0;
width: 100%;
pointer-events: none;
}

section img#lua {
  top: -100%;
  mix-blend-mode: screen;
 }

section img#stars {
  top: -100%;
  height: 100%;
  object-fit: cover;
}

section img#montanhas_01 {
  bottom: -100%;
  top: initial;
}

section img#montanhas_02 {
  bottom: -100%;
  top: initial;
  z-index: 1000;
  
}

#text {
  position: absolute;
  color: #fff;
  font-size: 4.3vw;
  font-weight: 600;
  margin-right: -2000px;
  padding-top: 0 10px 10px 0;

   
}

#text span {
  font-weight: 650;
  /* margin-right: 10px; */
}

#btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 80px;
  text-decoration:none;
  display: inline-block;
  padding: 8px 50px;
  background: #fff;
  border-radius: 40px;
  font-size: 1.4em;
  color: #2b1055;
  z-index: 10000;
}