body .wrapper {
  padding: 50px, 0px;
  font-size: 26px;
  font-weight: 500;
  margin: 0px, auto;
  text-align: justify;
  text-align-last: center;
  text-justify: inter-word;
}

.FadeText span {
  animation: FadeText 0.9s forwards;
  opacity: 0.1;
}

@keyframes FadeText {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}