.animated_up {
  transform: translateY(40px);
  animation: fadeUp linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes fadeUp {
  from {
    transform: translateY(50px);
  }
  to {
    transform: translateY(0);
  }
}
