html {
  height: 80%;
  font-family: "Inconsolata", sans-serif;
}
body {
  height: 80%;
  font-family: "Inconsolata", sans-serif;
  font-size:16px; background-color: #000029;

}





.menu {
  display: none;
}


/* Star background container */
.star-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Star elements */

/* Shared star style */
.star {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 0 2px 1px white;
}

/* Desktop stars */
#stars {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  z-index: 0;
}

/* Mobile stars */
#stars-mobile {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  z-index: 0;
}


#sky {
  height: 100%;
  background-color:#000029
}

.anim-line{
    position: relative;
    top: 50%;
    width: 24em;
    margin: 0 auto;
    border-right: 8px solid rgba(255,255,255,1);
    font-size: 180%;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
    color: white;
    font-size: 100px;
}

/* Animation */
.anim-typewriter{
  animation: typewriter 2s steps(16) 1s 1 normal both,
             blinkTextCursor 600ms steps(32) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 7.8em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,1);}
  to{border-right-color: transparent;}
}


.typewrite {
  font-size: 100px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  color: white;
  width: 30em;
}

.typewrite > .wrap {
  color: white;
  display: inline-block;
}

.typewrite > .wrap::after {
  content: '|';
  animation: blinkCursor 0.8s steps(1) infinite;
  margin-left: 2px;
}

@keyframes blinkCursor {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

<link rel="stylesheet" href="style.css">
