Spaces:
Running
Running
| /* Shared styles across all pages */ | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| .module-card { | |
| @apply p-6 rounded-xl shadow-lg transition-all duration-300 transform hover:scale-105 border border-transparent hover:border-purple-500; | |
| background: rgba(17, 24, 39, 0.7); | |
| backdrop-filter: blur(10px); | |
| } | |
| .module-card h3 { | |
| @apply text-xl font-semibold mb-2; | |
| } | |
| .module-card p { | |
| @apply text-gray-300 text-sm; | |
| } | |
| #vanta-bg { | |
| pointer-events: none; | |
| } |