@font-face { font-family: pixel; src: url("SpaceGrotesk-Bold.ttf"); }
@font-face { font-family: lexend; src: url("Lexend-Bold.ttf"); }
@font-face { font-family: lexendlight; src: url("Lexend-Light.ttf"); }

body{
    background-color: #0b1215;
}
#homenav{
    background-color: #101720;
    width: 100%;
    height: 100px;
   
    position: absolute;
    left: 0px;
    top: -20px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

#navtitle{
    font-family: pixel;
    color: white;
    font-size: 30px;
    position: absolute;
    left: 20px;
    top: 8px;
}

#login{
    background-color: #101720;
    border: 2px solid #101720;
    width: 150px;
    height: 50px;
    color: #ffffff;
    border-radius: 15px;
    position: absolute;
    font-size: 15px;
    font-family: pixel;
    left: 180px;
    top:35px;
    transition-duration: 0.4s;
    
}

#login:hover{
    background-color: #0b1215;
    border: 2px solid #0b1215;
}

#git{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 40px;
    top: 15px;
}

#about{
    background-color: #101720;
    border: 2px solid #101720;
    width: 150px;
    height: 50px;
    color: #ffffff;
    border-radius: 15px;
    position: absolute;
    font-size: 15px;
    font-family: pixel;
    left: 340px;
    top:35px;
    transition-duration: 0.4s;
    
}

#about:hover{
    background-color: #0b1215;
    border: 2px solid #0b1215;
}

#aboutbacking{
    background-image: linear-gradient(150deg, #0b1215,#12122e, #13133f, #0c0c3d, #06064d , #0c0c3d , #13133f ,#12122e , #0b1215);
    width: 99%;
    height: 500px;
    filter: blur(40px);
    position: absolute;
    top: 250px;

}

#abouts{
    width: 99%;
    height: 2000px;
    position: absolute;
    left: 0px;
    top: 100px;
}

#info1{
    font-family: lexend;
    font-size: 50px;
    color: white;
    position: absolute;
    top: 300px;
    left: 400px;
    overflow: hidden;  
  white-space: nowrap;
  margin: 0 auto; 
  letter-spacing: .05em; 
  animation: shift 1200ms ease-in-out;
}

#info2{
    font-family: lexendlight;
    font-size: 25px;
    color: white;
    position: absolute;
    top: 400px;
    left: 420px;
    overflow: hidden; 
  border-right: .10em solid #ffffff; 
  white-space: nowrap;
  margin: 0 auto; 
  letter-spacing: .05em;
  margin-left: 100px;
  margin-right: 100px; 
  animation: 
    typing 2s steps(40, end),
    blink-caret .75s step-end infinite;
}

#info3{
    font-family: lexend;
    font-size: 40px;
    color: white;
    position: absolute;
    top: 1000px;
    left: 100px;
    overflow: hidden; 
  border-right: .10em solid #ffffff; 
  white-space: nowrap;
  margin: 0 auto; 
  letter-spacing: .05em;
  margin-left: 100px;
  margin-right: 100px; 
  animation: 
    typing 2s steps(40, end),
    blink-caret .75s step-end infinite;
}
    
@keyframes typing {
    from { width: 0 }
    to { width: 800px }
  }
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ffffff; }
  }

  @keyframes shift {
    0%{
        filter: blur(40px);
        opacity: 0;
    
    }
    100%{
        filter: blur(0px);
        opacity: 1;
        
    }
    
}