.animated-text{font-size:3rem;font-weight:700;text-transform:uppercase;display:flex;gap:10px;justify-content:center;align-items:center;animation:fadeIn 2s ease-in-out}.animated-text span{opacity:0;animation:slideIn 1s forwards}.animated-text span:first-child{animation-delay:0s}.animated-text span:nth-child(2){animation-delay:.5s}@keyframes slideIn{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}