.animatedText {
    flex: 1;
    font-size: 2rem;
    color: var(--neutralLight);
}
.animatedText p {
    display: inline-block;
    margin-bottom: 1rem;
}
.animatedText span {
  opacity: 0;
  animation: fadeInUp .9s ease-out forwards;
}
.animatedText span:nth-of-type(1) {
  animation-delay: 0.5s;
}
.animatedText span:nth-of-type(2) {
  animation-delay: 1.2s;
}
.animatedText span:nth-of-type(3) {
  animation-delay: 2s;
}
.animatedText span:nth-of-type(4) {
  animation-delay: 2.6s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}
.animatedText ul {
    font-size: 1.75rem;
}
.animatedText li::before {
    content:" \261B \00a0\00a0\00a0";
    color: var(--comp);
}
