File size: 839 Bytes
e3e3a84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0;
}

.subtitle {
    font-size: 18px;
    color: #5f6368;
    margin-top: 8px;
}

.coming-soon {
    margin-top: 40px;
}

.coming-soon h2 {
    font-size: 28px;
    font-weight: 600;
    color: #3c4043;
}

.coming-soon p {
    font-size: 16px;
    line-height: 1.6;
    color: #5f6368;
}

footer {
    margin-top: 40px;
    font-size: 12px;
    color: #9aa0a6;
}