p {
  max-width: 30em;
  width: 100%;
  text-align: center;
  font-size: 1.7em;
  padding: 2em;
}

.text-box {
  padding: 0.5em;
  margin: 2em;
  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;
}

.text-box p {
  padding: 0.25em;
  margin: 0.20em;
}

h1 {
  text-shadow: 0px 0px 20px #ffffff;
  -webkit-text-stroke: 1px #fff5fe;
  color: #ff00ee00;
  -webkit-animation-name: flickerWhite;
          animation-name: flickerWhite;
  -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;
}

h2 {
  text-shadow: 0px 0px 20px #fdad00;
  -webkit-text-stroke: 1px #fdad00;
  color: #ff00ee00;
  -webkit-animation-name: flickerWhite;
          animation-name: flickerWhite;
  -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: 4em;
}

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

@keyframes flickerWhite {
  0% {
    text-shadow: 0px 0px 20px #fdad00;
  }
  100% {
    text-shadow: 0px 0px 25px #fdad00;
  }
}
/*# sourceMappingURL=text.css.map */