.empthy {
  height: 100vh;
}

.hidden {
  opacity: 0;
}
.animate {
  animation: scrollAnimation 1s forwards;
}

@keyframes scrollAnimation {
  0% {
    opacity: 0.5;
    transform: scale(0.9) translateY(200px);
  }
  100% {
    opacity: 1;
    transfrom: scale(1) translateY(0px);
  }
}
