File size: 1,059 Bytes
8245f92
a1d83ab
8245f92
a1d83ab
 
8245f92
a1d83ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8245f92
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<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>