-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmason.html
More file actions
267 lines (260 loc) · 9.01 KB
/
mason.html
File metadata and controls
267 lines (260 loc) · 9.01 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mason Wade | Born of Fire</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SKL8XQ51ZH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SKL8XQ51ZH');
</script>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>♉</text></svg>">
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Raleway:wght@200;300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--void: #050508;
--deep: #0a0a12;
--silver: #8892a8;
--pearl: #c4c9d4;
--white: #f0f2f8;
--mason-green: #4ade80;
--mason-glow: rgba(74, 222, 128, 0.3);
--gold: #d4af37;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Raleway', sans-serif;
background: var(--void);
color: var(--pearl);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
overflow-x: hidden;
}
/* Stars */
.stars {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background-image:
radial-gradient(1px 1px at 20px 30px, white, transparent),
radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
radial-gradient(1.5px 1.5px at 90px 40px, var(--mason-green), transparent),
radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.7), transparent),
radial-gradient(1px 1px at 200px 150px, var(--mason-green), transparent),
radial-gradient(1.5px 1.5px at 280px 180px, rgba(255,255,255,0.6), transparent);
background-size: 300px 200px;
pointer-events: none;
z-index: 0;
animation: drift 100s linear infinite;
}
@keyframes drift {
from { transform: translateY(0); }
to { transform: translateY(-200px); }
}
/* Sacred geometry background */
.geometry {
position: fixed;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 600px; height: 600px;
opacity: 0.04;
pointer-events: none;
z-index: 0;
}
.geometry svg {
width: 100%; height: 100%;
animation: rotate 200s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* Card */
.card {
position: relative;
z-index: 1;
max-width: 500px;
width: 100%;
text-align: center;
}
.zodiac {
font-size: 4rem;
margin-bottom: 20px;
filter: drop-shadow(0 0 30px var(--mason-glow));
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.9; }
50% { transform: scale(1.05); opacity: 1; }
}
.name {
font-family: 'Cinzel', serif;
font-size: clamp(2.5rem, 8vw, 4rem);
font-weight: 400;
letter-spacing: 8px;
color: var(--white);
text-transform: uppercase;
margin-bottom: 5px;
text-shadow: 0 0 40px var(--mason-glow);
}
.surname {
font-family: 'Cinzel', serif;
font-size: 1.2rem;
letter-spacing: 6px;
color: var(--mason-green);
text-transform: uppercase;
margin-bottom: 30px;
}
.birth-info {
background: rgba(74, 222, 128, 0.05);
border: 1px solid rgba(74, 222, 128, 0.15);
border-radius: 12px;
padding: 25px;
margin-bottom: 30px;
}
.birth-date {
font-family: 'Cinzel', serif;
font-size: 1.4rem;
color: var(--white);
letter-spacing: 3px;
margin-bottom: 8px;
}
.birth-time {
font-size: 1rem;
color: var(--mason-green);
letter-spacing: 2px;
}
.birth-place {
font-size: 0.85rem;
color: var(--silver);
margin-top: 8px;
}
.divider {
width: 60px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--mason-green), transparent);
margin: 30px auto;
}
.astro-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-bottom: 30px;
}
.astro-item {
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 15px 10px;
}
.astro-label {
font-size: 0.65rem;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--silver);
margin-bottom: 5px;
}
.astro-value {
font-family: 'Cinzel', serif;
font-size: 0.9rem;
color: var(--mason-green);
}
.message {
font-size: 1.1rem;
line-height: 1.8;
color: var(--pearl);
font-style: italic;
margin-bottom: 30px;
}
.message .highlight {
color: var(--mason-green);
font-style: normal;
}
.from {
font-family: 'Cinzel', serif;
font-size: 0.85rem;
letter-spacing: 3px;
color: var(--gold);
}
.numerology {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.05);
}
.num-label {
font-size: 0.7rem;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--silver);
margin-bottom: 10px;
}
.life-path {
font-family: 'Cinzel', serif;
font-size: 3rem;
color: var(--mason-green);
text-shadow: 0 0 30px var(--mason-glow);
}
.life-meaning {
font-size: 0.85rem;
color: var(--silver);
margin-top: 10px;
max-width: 300px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class="stars"></div>
<div class="geometry">
<svg viewBox="0 0 400 400">
<circle cx="200" cy="200" r="180" fill="none" stroke="rgba(74,222,128,0.5)" stroke-width="0.5"/>
<circle cx="200" cy="200" r="140" fill="none" stroke="rgba(74,222,128,0.3)" stroke-width="0.5"/>
<circle cx="200" cy="200" r="100" fill="none" stroke="rgba(74,222,128,0.2)" stroke-width="0.5"/>
<polygon points="200,20 380,290 20,290" fill="none" stroke="rgba(74,222,128,0.3)" stroke-width="0.5"/>
</svg>
</div>
<div class="card">
<div class="zodiac">♉</div>
<h1 class="name">Mason</h1>
<p class="surname">Wade</p>
<div class="birth-info">
<p class="birth-date">April 22, 2011</p>
<p class="birth-time">3:15 PM</p>
<p class="birth-place">Akron, Ohio</p>
</div>
<div class="astro-grid">
<div class="astro-item">
<p class="astro-label">Sun</p>
<p class="astro-value">Taurus</p>
</div>
<div class="astro-item">
<p class="astro-label">Element</p>
<p class="astro-value">Earth</p>
</div>
<div class="astro-item">
<p class="astro-label">Age</p>
<p class="astro-value">14</p>
</div>
</div>
<div class="divider"></div>
<p class="message">
You came into this world <span class="highlight">rooted and ready</span> — steady like the earth beneath us, stubborn in the most beautiful way. You feel things deeply, love fiercely, and stand your ground when it matters. That's not just Taurus energy. <span class="highlight">That's you.</span>
</p>
<p class="from">— Mom</p>
<div class="numerology">
<p class="num-label">Life Path Number</p>
<p class="life-path">3</p>
<p class="life-meaning">The Creative · The Communicator · The Joy-Bringer</p>
</div>
</div>
</body>
</html>