body {
  display: flexbox;
  flex-direction: column;
  min-height: 100vh;
}
.project-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.project-card.show {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  transition: 0.4s;
}