.spaceGrotesk {
  font-family: 'Space Grotesk', sans-serif;
}

@keyframes appear{
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
.animation-appear {
  animation: appear linear;
  animation-timeline: view();
  animation-range: 0% cover 40%;
}