* {
  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 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
}

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

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

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

section img#mountains_behind {

  bottom: -100%;
  top: initial;
}

section img#mountains_front {
  bottom: -150%;
  top: initial;
  z-index: 1000;
  max-height: 100vh;
}

#text {
  position: absolute;
  color: #fff;
  font-size: calc(4vw + 4vh);
  font-weight: 200;
  margin-right: -160%;
}

#text span {
  font-weight: 700;
}

#btn {
  position: absolute;
  top: 53%;
  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;
}
