-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathog-image.html
More file actions
66 lines (66 loc) · 1.35 KB
/
Copy pathog-image.html
File metadata and controls
66 lines (66 loc) · 1.35 KB
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
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1200px;
height: 630px;
background: #000;
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}
.content {
text-align: center;
z-index: 1;
}
.badge {
font-size: 16px;
font-weight: 600;
color: #CCFF00;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 24px;
}
h1 {
font-size: 72px;
font-weight: 800;
color: #fff;
letter-spacing: -2px;
line-height: 1.1;
margin-bottom: 20px;
}
h1 span { color: #CCFF00; }
.sub {
font-size: 24px;
color: #AEAEB2;
max-width: 600px;
margin: 0 auto;
}
.glow {
position: absolute;
width: 400px;
height: 400px;
border-radius: 50%;
background: rgba(204, 255, 0, 0.08);
filter: blur(100px);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class="glow"></div>
<div class="content">
<p class="badge">Two Day Club</p>
<h1>Never miss<br><span>two days</span> in a row.</h1>
<p class="sub">Earn 100% of the club fee back when you stay consistent.</p>
</div>
</body>
</html>