/* gradient info goes in the first two lines in body, or five lines if you picked max compatibility */

body {
  background: rgb(0, 0, 0);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
}
#sparkle {
  display: block;
  width: 50px;
}
.typing {
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  width: 25ch;
  animation: typing 2s steps(20) infinite, blink 0.5s step-end infinite;
  animation-iteration-count: 1;
  border-right: 2px solid black;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 25ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* controls text and image slide in effect */
.animate-top {
  position: relative;
  animation: animatetop 1.2s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* controls image fade in effect */
.opacity {
  animation: opac 2.2s;
}
@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
