Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Space Paused</title> | |
| <style> | |
| /* Base styles */ | |
| body { | |
| font-family: 'Courier New', Courier, monospace; /* sleek monospace font */ | |
| font-size: 14px; /* smaller font */ | |
| text-align: center; | |
| padding: 2rem; | |
| transition: background-color 0.3s, color 0.3s; /* smooth color transition */ | |
| } | |
| /* Light mode */ | |
| body { | |
| background-color: #ffffff; | |
| color: #000000; | |
| } | |
| /* Dark mode */ | |
| @media (prefers-color-scheme: dark) { | |
| body { | |
| background-color: #121212; | |
| color: #ffffff; | |
| } | |
| } | |
| h1 { | |
| font-weight: normal; | |
| font-size: 1.5rem; /* slightly smaller than default */ | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>We're live - message founders@envariant.ai to join!</h1> | |
| </body> | |
| </html> |