Spaces:
Running
Running
| /* Shared styles across all pages */ | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| @keyframes coolPulse { | |
| 0%, 100% { | |
| transform: scale(1); | |
| } | |
| 50% { | |
| transform: scale(1.05); | |
| } | |
| } | |
| .cool-pulse { | |
| animation: coolPulse 2s infinite; | |
| } |