Spaces:
Sleeping
Sleeping
| *, *::before, *::after { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| font-family: 'IBM Plex Sans', system-ui, sans-serif; | |
| background: #F7F6F3; | |
| color: #1A1916; | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { opacity: 0.3; transform: scale(0.8); } | |
| 50% { opacity: 1; transform: scale(1); } | |
| } | |
| @keyframes spin { | |
| to { transform: rotate(360deg); } | |
| } | |