.evolution-content {
  align-items: center;
}

.evolution-content img {
  width: 85%;
}

.box-animation {
  animation: myEvolution 1s ease-in-out 0s 1 normal forwards;
}

@keyframes myEvolution {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}