@font-face {
  font-family: 'Vazirmatn';
  src: url('/static/fonts/Vazir-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Dana';
  src: url('/static/fonts/Dana-Medium.woff2') format('woff2');
}


body {
  font-family: 'Dana','Vazirmatn', sans-serif;
}

.falling-heart {
  position: absolute;
  font-size: 1.5rem;
  animation: fall 1.2s ease-out forwards;
  pointer-events: none;
}

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