
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");



:root {
  --header-height: 3.5rem;

  
  --first-color: hsl(268, 58%, 48%);
  --first-color-alt: hsl(268, 28%, 38%);
  --second-color: hsl(335, 88%, 56%);
  --second-color-alt: hsl(328, 78%, 38%);
  --title-color: hsl(0, 0%, 100%);
  --text-color: hsl(252, 100%, 87%);
  --body-color: hsl(268, 58%, 22%);

  
  --body-font: "Montserrat", sans-serif;
  --biggest-font-size: 2rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  
  --z-tooltip: 10;
  --z-fixed: 100;
}
 
h2 {
  font-size: 20px;
  margin-left: 90px;
  margin-top: 150px;

}

#log {
  background-color: white;
 width: 120px;
 border-radius: 20px;
  
}

small {
  margin-left: 90px;
  font-size: 20px;
}

#line {
  margin-left: 350px;
}

#planet {
 width: 200px;
 margin-left: 100px;
 
}

h1 {
  font-size: 60px;
  margin-left: 90px;
  color: rgb(255, 246, 246);
}


body {
  
    background-image: url(points-space.svg);
  }

#rocket {
  width:  300px;
  margin-top: 10px;
  margin-left: 150px;
  animation: fadein 10s;
 }

 #get-started {
  height: 50px;
  border-radius: 20px;
  margin-left: 100px;
  width: 180px;
  background-color: rgb(235, 24, 140);
  color: white;
 }

 #menu {

  visibility: hidden;
  width: 0px;
  height: 0px;
  background-color: blueviolet;
}





footer {
 position:absolute;
 margin-top: 10px;
}

.main {
display: flex;

}

li {
  visibility: visible;
  list-style: none;
  margin-top: 20px;
}

.header {
  list-style: none;
  display:flex;
  justify-content: space-evenly;
}


#spacy {
  display: flex;
}

#space {
  margin-top: 15px;
}

#logo {
  width: 50px;
}

.sidebar {
  visibility: hidden;
  height: 0px;
}


#close {
  visibility: hidden;
}

@keyframes fadein {
  from {
      opacity: 0;
      width: 0;
  }

  to {
      opacity: 1;
      width: 300px;
  }
} 



@media screen and (min-width: 1152px) {

}
  :root {
    --biggest-font-size: 4rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }



* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  background-color: var(--body-color);
  color: var(--text-color);
 
}


a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}


.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

@media (max-width: 900px) {
.main {
  overflow: hidden; 
  display: grid;
  justify-content: center;
}

.header {
  list-style: none;
  display:flex;
  justify-content: space-evenly;
}

li {
  visibility: hidden;
  list-style: none;
}

h1 {
  font-size: 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-left: 80px;
}

h2 {
  font-size: 15px;
  margin-top: 80px;
  margin-left: 80px;
}

small {
  text-align: center;
  margin-left: 40px;
  font-size: 15px;
  justify-content: center;
  
  
 
}

#planet {
  width: 150px;
  margin-left: 10px;

  
}

#rocket {
 margin-left: 20px;
 width: 220px;
 animation: fadein 8s;
 
}

.flexy {
  display: flex;

}

#line {
  margin-left: 240px;
  width: 100px;
  height:10px;
}

#get-started {
  width: 180px;
  background-color: rgb(235, 24, 140);
  color: white;
 
}

#logo {
  width: 90px;
 
}

#spacy {
  display: flex;
}

#space {
  margin-top: 15px;
}

#log {
  visibility: hidden;
}

#menu {

  visibility: visible;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background-color: var(--body-color);
  border-radius: 20px;
  border: white solid;
}
#close {
  visibility: hidden;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background-color: var(--body-color);
  border-radius: 20px;
  border: white solid;
}

.sidebar {
  background-color: var(--body-color);
  position: fixed;
  height: 500px;
  visibility: hidden;
  padding-top: 50px;
  
  
}

.backdrop {
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  height: 100%;
  visibility: hidden;
  
}

#login {
  background-color: white;
 width: 120px;
 border-radius: 20px;
 height: 50px;
 color: black;
 margin-top: 200px;
 
  
}

span {
  font-size: 18px;
  color: white;
  margin-left: 30px;
  
}

@keyframes fadein {
  from {
      
      opacity: 0;
      width: 130px;
     
  }

  to {
      opacity: 1;
     width: 220px;
  }
} 
}