* {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0 auto;
    height: 100%;
    text-transform: uppercase;
  }

  body {
    display: flex;
    align-items: center;
    font-family: "Nunito", sans-serif;
    justify-content: center;
    background-color: #222;
  }

  div {
    position: relative;
    max-width: 100%;
    padding: 4rem 3rem;
    text-align: center;
    color: #fff !important;
    background-color: #d70000;
  }
  div:after {
    position: absolute;
    content: "";
    top: 2vw;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    transform: scale(0.75);
    -moz-filter: blur(3vw);
    -ms-filter: blur(3vw);
    filter: blur(3vw);
    background: linear-gradient(270deg, #d70000, #ef5058);
    background-size: 200% 200%;
    animation: animateGlow 5s ease infinite;
  }
  @keyframes animateGlow {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes textColor {
    0% {
      color: #222;
    }
    50% {
      color: #fff;
    }
    100% {
      color: #222;
    }
  }/*# sourceMappingURL=app.css.map */
