@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body {
    font-family: 'Roboto Condensed', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Custom animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-slow {
    animation: pulse 3s infinite;
}