@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  position: fixed;
  width: 100%;
  height: 100%;
  overscroll-behavior: contain;
}

body {
  height: 100%;
  background-image: url("/space.1950b3d3.jpg");
  background-size: 100%;
  background-position: center;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-image: url("/space.1950b3d3.jpg");
  background-size: 100%;
  background-position: center;
  z-index: 10000;
}
.loader .loader-text {
  position: absolute;
  top: calc(50% + 250px);
  left: 50%;
  color: #fff;
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  transform: translate(-50%, -50%);
  z-index: 101;
}
.loader .loader-count {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165px;
  height: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/moon.b2c9a206.png");
  background-size: 100%;
  background-position: center;
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.loader .loader-rocket {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loaderRocket 2.5s infinite linear;
}
.loader i {
  font-size: 50px;
  color: #fff;
  animation: rocketAnimation 2.5s infinite linear;
}
@keyframes loaderRocket {
  0% {
    transform: rotate(0deg) translate(-165px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-165px) rotate(-360deg);
  }
}
@keyframes rocketAnimation {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.alert {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 350px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 12px 7px #C5D8EF;
  box-shadow: 0px 0px 12px 7px #C5D8EF;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.alert p {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.alert a {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.alert .alert-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.alert .alert-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5px;
  width: 15px;
  height: 3px;
  background-color: black;
  transform: translateY(-50%) rotate(45deg);
}
.alert .alert-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5px;
  width: 15px;
  height: 3px;
  background-color: black;
  transform: translateY(-50%) rotate(-45deg);
}

.header-hamburger {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  z-index: 15;
  cursor: pointer;
}
.header-hamburger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 40px;
  height: 3px;
  transform: translateY(5px) rotate(0deg);
  background-color: #fff;
  transition: 0.3s;
}
.header-hamburger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 40px;
  height: 3px;
  transform: translateY(-5px) rotate(0deg);
  background-color: #fff;
  transition: 0.3s;
}
.header-hamburger.active::after {
  transform: translateY(-50%) rotate(45deg) !important;
}
.header-hamburger.active::before {
  transform: translateY(-50%) rotate(-45deg) !important;
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #061222;
  -webkit-box-shadow: 0px 27px 49px 17px #061222;
  box-shadow: 0px 27px 49px 17px #061222;
  color: #fff;
  font-family: "Poppins", sans-serif;
  transform: translateX(-50%);
  z-index: 11;
}
header .header-line {
  width: calc(100% - 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}
header .header-content p {
  font-weight: bold;
}
header .header-content span {
  color: #369EE3;
}
header .header-content nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .header-content nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
header .header-content nav ul li {
  font-size: 15px;
  margin: 0 30px;
  list-style: none;
}
header .header-content nav ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}
header .header-content nav ul li a.nav-active::after {
  content: "";
  left: 50%;
  top: calc(100% + 22px);
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #56bfdf;
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 11;
}
header .header-content nav ul li a:hover {
  -webkit-text-shadow: 0 0 4px #C5D8EF;
  text-shadow: 0 0 4px #C5D8EF;
}

.wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  z-index: 2;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
}
main section {
  position: sticky;
  height: 100vh;
}
main .nextPlanet-content {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  opacity: 0;
}
main .nextPlanet-content div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 300px;
  height: 300px;
}
main .nextPlanet-content div button {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
main .nextPlanet-content div .nextPlanet-name {
  position: absolute;
  color: #fff;
  font-weight: lighter;
  letter-spacing: 3px;
  font-family: "Libre Baskerville", serif;
  font-size: 11px;
}
main .nextPlanet-content.nextPlanet-left {
  left: 0;
}
main .nextPlanet-content.nextPlanet-left .nextPlanet-name {
  transform: translateX(150px);
}
main .nextPlanet-content.nextPlanet-right {
  left: 100%;
}
main .nextPlanet-content.nextPlanet-right .nextPlanet-name {
  transform: translateX(-150px);
}
main .section-title {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
main .section-title .title-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 750px;
}
main .section-title .title-content h1 {
  margin-bottom: 15px;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
  letter-spacing: 5px;
}
main .section-title .title-content h2 {
  font-size: 80px;
  font-family: "Libre Baskerville", serif;
  font-weight: lighter;
}
main .section-title .title-content p {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 75px;
}
main .section-title .title-content .title-btn-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
main .section-title .title-content .title-btn-content .getStarted {
  padding: 15px 45px;
  border-radius: 30px;
}
main .section-title .title-content .title-btn-content .btn-change {
  padding: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
main .section-title .title-content .title-btn-content .btn-change:hover {
  opacity: 0.6;
}
main .section-learnMore {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
main .section-learnMore .learnMore-content {
  position: absolute;
  width: 50%;
  margin-top: 75px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-left: 50px;
  color: #fff;
}
main .section-learnMore .learnMore-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
  letter-spacing: 3px;
  text-transform: uppercase;
}
main .section-learnMore .learnMore-content h4 {
  margin-bottom: 30px;
  font-family: "Libre Baskerville", serif;
  font-weight: lighter;
  font-size: 75px;
  letter-spacing: 5px;
}
main .section-learnMore .learnMore-content p {
  width: 80%;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  opacity: 0.9;
}
main .section-learnMore .learnMore-content .learnMore-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .section-learnMore .learnMore-content .learnMore-btn .btn-more {
  padding: 15px 45px;
  border-radius: 30px;
  margin-right: 15px;
}
main .section-learnMore .learnMore-content .learnMore-btn .btn-play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}

.btnStyle {
  width: 150px;
  padding: 15px;
  margin: 10px;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 12px 2px #488ab1;
  box-shadow: 2px 2px 12px 2px #488ab1;
  cursor: pointer;
  transition: 0.2s;
}
.btnStyle:hover {
  opacity: 0.6;
}

.btn-style {
  padding: 5px 30px;
  border: none;
  border-radius: 15px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 3px #C5D8EF;
  box-shadow: 0px 0px 10px 3px #C5D8EF;
  transition: 0.3s;
  cursor: pointer;
}
.btn-style:hover {
  -webkit-box-shadow: 0px 0px 12px 7px #C5D8EF;
  box-shadow: 0px 0px 12px 7px #C5D8EF;
}

.blue-line {
  width: 100px;
  height: 3px;
  background-color: #56bfdf;
  margin: 15px 0;
}

footer {
  position: fixed;
  left: 50%;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  z-index: 99999;
}
footer p, footer a {
  margin: 5px;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .nextPlanet-content.nextPlanet-left .nextPlanet-name {
    transform: translate(50px) !important;
  }
  .nextPlanet-content.nextPlanet-right .nextPlanet-name {
    transform: translate(-50px) !important;
  }
}
@media screen and (max-width: 950px) {
  .title-content {
    width: 500px !important;
  }
}
@media screen and (max-width: 768px) {
  .header-hamburger {
    display: block;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    justify-content: flex-start;
    background-color: #061222;
    transform: translateX(-120%);
  }
  header .header-line {
    display: none;
  }
  header .header-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
  }
  header .header-content .header-logo {
    font-size: 20px;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
  header .header-content nav ul {
    flex-direction: column !important;
    align-items: flex-start;
  }
  header .header-content nav ul li {
    font-size: 20px;
    margin: 15px 0;
  }
  header .header-content nav ul li a.nav-active::after {
    content: "";
    top: 100%;
    width: 75px;
  }
  header .header-content nav ul li button {
    width: 100px;
    height: 40px;
  }

  .title-content {
    width: 300px !important;
  }

  .learnMore-content {
    width: 100% !important;
    margin-top: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center !important;
    flex-direction: column;
    margin-left: 0 !important;
  }

  .learnMore-text {
    max-height: 50vh;
    overflow: auto;
    background-color: #061222 !important;
  }

  h3 {
    font-size: 18px !important;
  }

  h4 {
    font-size: 50px !important;
  }
}
@media screen and (max-width: 550px) {
  h1 {
    font-size: 18px !important;
  }

  h2 {
    font-size: 50px !important;
  }

  .nextPlanet-name {
    display: none;
  }
}

/*# sourceMappingURL=/app.4a5f14b0.css.map */