/* Custom styles */ @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap'); body { font-family: 'Roboto Condensed', sans-serif; transition: all 0.3s ease; min-height: 100vh; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #1a1a1a; } ::-webkit-scrollbar-thumb { background: #dc2626; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: #b91c1c; } /* Animation for elements */ @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } } .animate-pulse { animation: pulse 2s infinite; }