@keyframes shake-bottom {
  0% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  10% {
    transform: rotate(2deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  30% {
    transform: rotate(4deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  min-height: 100vh !important;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    height: auto !important;
    min-height: 100vh;
  }
}

.login-panel {
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  right: -100%;
  top: 0;
  background-color: black;
  height: 100vh;
  width: 17em;
  z-index: 10000;
  transition: right 0.3s ease;
  padding: 2em;
  color: white;
}
@media (max-width: 768px) {
  .login-panel {
    width: 100%;
  }
}
.login-panel .close-login {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  color: white;
  border: none;
  z-index: 20000;
  background-color: transparent;
}
@media (max-width: 768px) {
  .login-panel .close-login {
    font-size: 5rem;
  }
}
.login-panel.active {
  right: 0;
}
.login-panel.active p {
  font-size: 2em;
}
@media (max-width: 768px) {
  .login-panel.active p {
    font-size: 1.8em;
  }
}
.login-panel form {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
  width: 100%;
}
.login-panel form p {
  padding-top: 2em;
  padding-bottom: 0.5em;
  font-size: 1em !important;
  text-align: center;
}
.login-panel form input {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .login-panel form input {
    padding: 1em;
  }
}
.login-panel form button {
  padding: 0.7em 0.1em;
  width: 8em;
  -webkit-text-decoration: solid;
          text-decoration: solid;
  background: white;
  color: black;
  border-radius: 0.2em;
  border: none;
  cursor: pointer;
  font-size: 1em;
}
@media (max-width: 768px) {
  .login-panel form button {
    width: 100%;
    padding: 1em;
    margin-top: 0.5em;
  }
}
.login-panel form .log-row {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 0.5em;
  width: 100%;
  align-items: center;
}
.login-panel form .log-row i {
  font-size: 1.5em;
  padding: 0.5em 0em;
}
@media (max-width: 768px) {
  .login-panel form .log-row i {
    font-size: 1.8em;
  }
}
.login-panel form .log-row input {
  flex: 1;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  border-bottom: 0.1em solid black;
  padding: 0em 0;
}
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    padding: 0.3em 0;
  }
}
.nav .logo {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0 1em;
  align-items: center;
}
@media (max-width: 768px) {
  .nav .logo {
    padding: 0 0.5em;
  }
}
.nav img {
  width: 5em;
  height: 5em;
}
@media (max-width: 768px) {
  .nav img {
    width: 3em;
    height: 3em;
  }
}
.nav h1 {
  padding: 1em 0;
  font-size: 2em;
}
@media (max-width: 768px) {
  .nav h1 {
    font-size: 1.5em;
    padding: 0.5em 0;
  }
}
@media (max-width: 480px) {
  .nav h1 {
    font-size: 1.3em;
  }
}
.nav .login-toggle {
  border: none;
  border-radius: 0.5em;
  background-color: #4CBB17;
  cursor: pointer;
  padding: 0.4em 0.8em;
  font-size: 1.8em;
  margin-right: 1em;
  transition: background-color 0.3s, color 0.3s;
}
.nav .login-toggle:hover {
  background-color: black;
  color: white;
}
@media (max-width: 768px) {
  .nav .login-toggle {
    font-size: 1.4em;
    padding: 0.3em 0.6em;
    margin-right: 0.5em;
  }
}
.nav p {
  font-size: 0.9em;
}
@media (max-width: 768px) {
  .nav p {
    font-size: 0.8em;
  }
}
.nav .loggg {
  display: flex;
  flex-direction: row;
  gap: 0.3em;
  align-items: center;
}
.nav .nav_main {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
@media (max-width: 1024px) {
  .nav .nav_main {
    gap: 1em;
  }
}
@media (max-width: 768px) {
  .nav .nav_main {
    display: none;
  }
}
.nav .nav_main .nav_menu {
  padding: 1em;
  padding-bottom: 0.5em;
  border: none;
  border-bottom: 0.1em solid transparent;
  background-color: transparent;
  font-size: 1.6em;
}
.nav .nav_main .nav_menu:hover {
  cursor: pointer;
  border-bottom: 0.1em solid black;
}
@media (max-width: 1024px) {
  .nav .nav_main .nav_menu {
    font-size: 1.4em;
    padding: 0.8em 0.5em;
  }
}

.main_Section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 0em;
  gap: 0em;
  min-height: calc(100vh - 120px);
}
@media (max-width: 768px) {
  .main_Section {
    padding: 1em 0.5em;
    gap: 2em;
    min-height: calc(100vh - 80px);
  }
}

.text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 12em;
  -webkit-text-decoration: solid;
          text-decoration: solid;
}
@media (max-width: 1024px) {
  .text {
    gap: 2em;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .text {
    gap: 3em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

.motto {
  -webkit-text-decoration: solid;
          text-decoration: solid;
  font-size: 3.5em;
  width: 30vw;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .motto {
    width: 80vw;
    font-size: 2.5em;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .motto {
    width: 90vw;
    font-size: 2.5em;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .motto {
    font-size: 2.5em;
    width: 80vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.motto p {
  margin-top: 2em;
  font-size: 0.3em;
  font-weight: 200;
  font-family: cursive;
  font-style: italic;
}
@media (max-width: 1024px) {
  .motto p {
    font-size: 0.35em;
  }
}
@media (max-width: 768px) {
  .motto p {
    width: 60vw;
    font-size: 0.4em;
    margin-top: 3em !important;
  }
}

.text_start {
  margin-top: 1.5em;
  font-size: 1em;
  width: 30vw;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}
@media (max-width: 1024px) {
  .text_start {
    width: 80vw;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .text_start {
    width: 90vw;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.text_start p {
  display: none;
}

.title {
  margin: 2em 0;
}
@media (max-width: 768px) {
  .title {
    margin: 1em 0;
  }
}
.title button {
  margin: 0em 0em;
  padding: 1em 2em;
  border: 1px solid black;
  background: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.2em;
  border-radius: 2em;
  transition: background-color 0.3s, color 0.3s;
  animation: shake-bottom 7s infinite;
  min-width: 150px;
}
.title button:hover {
  color: black;
  background-color: #4CBB17;
}
@media (max-width: 768px) {
  .title button {
    padding: 1em 2em;
    font-size: 1.2em;
    width: 100%;
    max-width: 6em;
  }
}

.footer {
  padding: 0.8em 1em;
  background-color: black;
  color: white;
  font-size: 0.9em;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer {
    padding: 0.6em 0.5em;
    font-size: 0.8em;
    position: fixed;
  }
}

.planet-container {
  border-radius: 50%;
  box-shadow: 5px -3px 10px 3px #5e90f1;
  height: 450px;
  overflow: hidden;
  position: relative;
  width: 450px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .planet-container {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 768px) {
  .planet-container {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 480px) {
  .planet-container {
    height: 250px;
    width: 250px;
  }
}

.night {
  animation: rotate-night 80s linear infinite;
  background-image: url(https://www.solarsystemscope.com/textures/download/2k_earth_nightmap.jpg);
  background-size: 200%;
  height: 500px;
  position: absolute;
  width: 500px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .night {
    height: 450px;
    width: 450px;
  }
}
@media (max-width: 768px) {
  .night {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 480px) {
  .night {
    height: 300px;
    width: 300px;
  }
}

.day {
  animation: rotate-day 80s linear infinite;
  background-image: url(https://www.solarsystemscope.com/textures/download/2k_earth_daymap.jpg);
  background-size: 200%;
  border-left: solid 1px black;
  border-radius: 50%;
  box-shadow: 5px 0 20px 10px #040615 inset;
  height: 500px;
  margin-left: 110px;
  position: absolute;
  width: 500px;
  z-index: 3;
}
@media (max-width: 1024px) {
  .day {
    height: 450px;
    width: 450px;
    margin-left: 100px;
  }
}
@media (max-width: 768px) {
  .day {
    height: 350px;
    width: 350px;
    margin-left: 80px;
  }
}
@media (max-width: 480px) {
  .day {
    height: 300px;
    width: 300px;
    margin-left: 60px;
  }
}

.clouds {
  animation: rotate-day 50s linear infinite, spin-clouds 100s ease infinite;
  background-image: url(https://www.solarsystemscope.com/textures/download/2k_earth_clouds.jpg);
  background-size: 200%;
  border-radius: 50%;
  box-shadow: 5px 0 20px 10px #040615 inset, -9px 0px 20px 10px #5e90f1 inset;
  height: 500px;
  margin-left: 100px;
  opacity: 0.45;
  position: absolute;
  width: 500px;
  z-index: 4;
}
@media (max-width: 1024px) {
  .clouds {
    height: 450px;
    width: 450px;
    margin-left: 90px;
  }
}
@media (max-width: 768px) {
  .clouds {
    height: 350px;
    width: 350px;
    margin-left: 70px;
  }
}
@media (max-width: 480px) {
  .clouds {
    height: 300px;
    width: 300px;
    margin-left: 50px;
  }
}

.inner-shadow {
  background: transparent;
  border-radius: 50%;
  box-shadow: -5px 0 10px 1px #152b57 inset, 5px 0 10px 1px #040615 inset;
  height: 500px;
  margin-left: 0;
  position: absolute;
  width: 500px;
  z-index: 5;
}
@media (max-width: 1024px) {
  .inner-shadow {
    height: 450px;
    width: 450px;
  }
}
@media (max-width: 768px) {
  .inner-shadow {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 480px) {
  .inner-shadow {
    height: 300px;
    width: 300px;
  }
}

@keyframes rotate-day {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -80% 0;
  }
}
@keyframes rotate-night {
  0% {
    background-position: calc(120% + 120px) 0;
  }
  100% {
    background-position: calc(-80% + 120px) 0;
  }
}
@keyframes spin-clouds {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    padding: 0.5em;
    margin-right: 0.5em;
  }
}

@media (max-width: 768px) {
  .nav_main.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: white;
    border-top: 1px solid black;
    z-index: 1000;
  }
  .nav_main.mobile-active .nav_menu {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 1em;
  }
  .nav_main.mobile-active .nav_menu:hover {
    background-color: #f5f5f5;
  }
}/*# sourceMappingURL=main.css.map */