  .ea-aat-wrapper {
    padding: 20px 0 ;
  }
  .ea-aat-title {
    font-weight: 700;
    font-size: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .aat-direction {
    display: flex;
    justify-content: center; 
    flex-direction: column;

  }
  .ea-aat-title::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    color:rgba(246, 12, 12, 0.25);
    content: attr( aat-background-text );
    font-size: 120px;
    opacity: 0.2;
    line-height: 1;
    text-transform: uppercase;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    user-select: none;
  }
  .ea-aat-text .ea-aat-letter {
    display: inline-block;
    line-height: 1em;
  }

.ea-aat-rainbow {
  animation: Color 4s linear infinite;
  -webkit-animation: Color 4s ease-in-out infinite;
  text-shadow: 6px 3px #f0f0f0;
}

@keyframes Color{
  0%{
    color:#A0D468;
  }
  
  20%{
    color:#4FC1E9;
  }
  
  40%{
    color:#FFCE54;
  }
  
  60%{
    color:#FC6E51;
  }
  
  80%{
    color:#ED5565;
  }
  
  100%{
    color:#AC92EC;
  }
}

@-moz-keyframes Color{
  0%{
    color:#A0D468;
  }
  
  20%{
    color:#4FC1E9;
  }
  
  40%{
    color:#FFCE54;
  }
  
  60%{
    color:#FC6E51;
  }
  
  80%{
    color:#ED5565;
  }
  
  100%{
    color:#AC92EC;
  }
}

@-webkit-keyframes Color{
  0%{
    color:#A0D468;
  }
  
  20%{
    color:#4FC1E9;
  }
  
  40%{
    color:#FFCE54;
  }
  
  60%{
    color:#FC6E51;
  }
  
  80%{
    color:#ED5565;
  }
  
  100%{
    color:#AC92EC;
  }
}
  
