/*!
 * Gaia theme v4.0.0-alpha.6
 * Homepage: https://pingendo.com
 * Copyright 2014-2017 Pingendo
 * Licensed under MIT
 * Based on Bootstrap
*/
@import url("https://fonts.googleapis.com/css?family=Lato");
html,
body {
  scroll-behavior: smooth;
  background-color: #1b1b1b;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  flex-direction: column;
}

h1,
h2,
p {
  text-align: center;
  color: white;
  font-family: sans-serif;
  height: 0.7em;
}

h1 {
  font-size: 10em;
}

p {
  margin-bottom: 75%;
}

.typing {
  display: inline;
  position: relative;
}
.typing span {
  content: "";
  -webkit-animation: blink 5s infinite;
          animation: blink 5s infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  height: 0.2em;
  width: 0.2em;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0.2em;
  border-radius: 50%;
  margin-left: 0.2em;
}
.typing span:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  margin-left: 0.6em;
}
.typing span:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  margin-left: 1em;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */