#hero h1 {
  text-shadow: 0px 0px 20px #F72585;
  -webkit-text-stroke: 1px #F72585;
  color: #ff00ee00;
  -webkit-animation-name: flicker;
          animation-name: flicker;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  font-size: 7em;
}

@-webkit-keyframes flicker {
  0% {
    text-shadow: 0px 0px 20px #F72585;
  }
  100% {
    text-shadow: 0px 0px 25px #F72585;
  }
}

@keyframes flicker {
  0% {
    text-shadow: 0px 0px 20px #F72585;
  }
  100% {
    text-shadow: 0px 0px 25px #F72585;
  }
}

.start {
  background-color: black;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  -webkit-animation-name: startScreen;
          animation-name: startScreen;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  z-index: 1;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.start img {
  width: 80%;
  max-width: 10em;
  margin: 0;
  padding: 0;
}

.start p {
  margin: 0;
  padding: 0;
  font-size: 1.5em;
  font-weight: bolder;
}

@-webkit-keyframes startScreen {
  0% {
    background-color: black;
    opacity: 1;
    pointer-events: all;
  }
  50% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 0;
  }
}

@keyframes startScreen {
  0% {
    background-color: black;
    opacity: 1;
    pointer-events: all;
  }
  50% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=hero.css.map */