-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
495 lines (426 loc) · 32.2 KB
/
index.html
File metadata and controls
495 lines (426 loc) · 32.2 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NotDaBenjamin's Silly Creations</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sekuya&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=favorite" />
</head>
<body>
<!-- POPUP -->
<style>
/* Hidden by default */
.popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 9999;
}
.popup-content {
background: #070a33;
width: 700px;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
border-radius: 5px;
}
.popup-btn {
cursor: pointer;
color: white;
text-decoration: underline;
}
@media (max-width: 768px) {
.popup-content {
background: #070a33;
width: 400px;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
border-radius: 5px;
}
}
</style>
<div id="supportmepopup" class="popup-overlay">
<div class="popup-content">
<h2>Support me, for Free ❤️</h2><br>
<p>I work hard to put together scripts for everyone to use. I'm young, so I can't do much with these until I do get older, which makes me mad but there is nothing I can do about it.<br>Visit my <a href="supportme.html">Support Me</a> page to see what you CAN do.<br><br>But you know what? You being here might just be enough to keep me going.<br>You are loved, Keep going, Thank you. ❤️</p>
<br>
<div style="margin-bottom: 15px;">
<input type="checkbox" id="dontShow">
<label for="dontShow">Don't show this again</label>
</div>
<span class="popup-btn" onclick="window.location.href='https://notdabenjamin.neocities.org/supportme';" color="white">Support Me 💝</span><br>
<span class="popup-btn" onclick="closePopup()" color="white">Close</span>
</div>
</div>
<script>
window.onload = function() {
// Check if the user has previously opted out
const isOptedOut = localStorage.getItem('hidesupportmepopup');
if (!isOptedOut) {
// Run the 10% chance logic
if (Math.random() <= 0.1) {
document.getElementById('supportmepopup').style.display = 'block';
console.log("supportmepopup displayed as 'block'")
console.log("Popup is now visible")
}
}
};
function closePopup() {
const dontShowChecked = document.getElementById('dontShow').checked;
// If they checked the box, save that preference
if (dontShowChecked) {
localStorage.setItem('hidesupportmepopup', 'true');
console.log("hidesupportmepopup == true")
console.log("This popup will never show again")
}
document.getElementById('supportmepopup').style.display = 'none';
console.log("supportmepopup displayed as 'none'")
console.log("Popup is now hidden")
}
</script>
<!-- ══ INTRO ══ -->
<div id="intro">
<video
id="intro-video"
src="https://notdb.pages.dev/external/WelcomeANI1080.mp4"
autoplay muted playsinline preload="auto"
disablePictureInPicture
controlsList="nodownload nofullscreen noremoteplayback"
></video>
</div>
<!-- ══ SITE ══ -->
<div id="site">
<div id="header-bg"></div>
<!-- Fixed top-bar (outside scroll layer so it never moves) -->
<div id="topbar">
<div id="topbar-left"></div>
<nav id="nav">
<a href="https://notdabenjamin.atabook.org/"
onclick="window.open(this.href, 'newwindow', 'width=800,height=600'); return false;">
Guestbook
</a>
<a href="index.html"><u>Home</u></a>
<a href="projects.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="kitty.html">Cats! :3</a>
<a href="contact.html">Contact</a>
<a class="support" href="supportme.html">Support Me ♥</a>
</nav>
<div id="socials">
<a href="https://notdb.pages.dev/g" title="Github" aria-label="Github" target="_blank">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
</a>
<a href="https://linktr.ee/NotDaBenjamin" title="Linktr.ee" aria-label="Linktr.ee" target="_blank">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Linktree</title><path d="m13.73635 5.85251 4.00467-4.11665 2.3248 2.3808-4.20064 4.00466h5.9085v3.30473h-5.9365l4.22865 4.10766-2.3248 2.3338L12.0005 12.099l-5.74052 5.76852-2.3248-2.3248 4.22864-4.10766h-5.9375V8.12132h5.9085L3.93417 4.11666l2.3248-2.3808 4.00468 4.11665V0h3.4727zm-3.4727 10.30614h3.4727V24h-3.4727z"/></svg>
<a href="https://x.com/NotDaBenjamin" title="X" aria-label="X" target="_blank">
<svg viewBox="0 0 24 24"><path d="M4 4l16 16M20 4L4 20" stroke-linecap="round"/></svg>
</a>
<a href="https://bsky.app/profile/notdabenjamin.neocities.org" title="Bluesky" aria-label="Bluesky" target="_blank">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Bluesky</title><path d="M5.202 2.857C7.954 4.922 10.913 9.11 12 11.358c1.087-2.247 4.046-6.436 6.798-8.501C20.783 1.366 24 .213 24 3.883c0 .732-.42 6.156-.667 7.037-.856 3.061-3.978 3.842-6.755 3.37 4.854.826 6.089 3.562 3.422 6.299-5.065 5.196-7.28-1.304-7.847-2.97-.104-.305-.152-.448-.153-.327 0-.121-.05.022-.153.327-.568 1.666-2.782 8.166-7.847 2.97-2.667-2.737-1.432-5.473 3.422-6.3-2.777.473-5.899-.308-6.755-3.369C.42 10.04 0 4.615 0 3.883c0-3.67 3.217-2.517 5.202-1.026"/></svg>
</a>
<!-- TikTok -->
<!-- TikTok -->
<div style="position:relative; display:flex; flex-direction:column; align-items:center;" >
<a href="https://notdb.pages.dev/updates/mostrecentproject" title="Python" aria-label="Python" target="_blank">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Python</title><path d="M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z"/></svg>
</a>
<div style="
position: absolute;
top: 28px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
pointer-events: none;
white-space: nowrap;
">
<svg width="12" height="18" viewBox="0 0 12 18" fill="none" style="opacity:0.7;">
<path d="M6 0 C6 10, 6 10, 6 14" stroke="#c9a84c" stroke-width="1.2"/>
<path d="M2 11 L6 16 L10 11" stroke="#c9a84c" stroke-width="1.2" fill="none" stroke-linejoin="round"/>
</svg>
<span style="
font-family: 'Cormorant Garamond', serif;
font-size: 0.65rem;
font-style: italic;
color: #c9a84c;
opacity: 0.8;
letter-spacing: 0.05em;
margin-top: 2px;
">My Latest Project</span>
</div>
</div>
<!-- YouTube -->
<a href="https://www.youtube.com/@NotDaBenjamin" title="YouTube" aria-label="YouTube" target="_blank">
<svg viewBox="0 0 24 24"><rect x="2" y="5" width="20" height="14" rx="3"/><polygon points="10,9 16,12 10,15" fill="currentColor" stroke="none"/></svg>
</a>
<!-- Discord -->
<a href="https://discord.com/users/1270155749213081613" title="Discord" aria-label="Discord" target="_blank">
<svg viewBox="0 0 24 24"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057c.002.022.015.043.03.056a19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z" fill="currentColor" stroke="none"/></svg>
</a>
<a href="https://tryhackme.com/p/NotDaBenjamin" title="TryHackMe" aria-label="TryHackMe" target="_blank">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>TryHackMe</title><path d="M10.705 0C7.54 0 4.902 2.285 4.349 5.291a4.525 4.525 0 0 0-4.107 4.5 4.525 4.525 0 0 0 4.52 4.52h6.761a.625.625 0 1 0 0-1.25H4.761a3.273 3.273 0 0 1-3.27-3.27A3.273 3.273 0 0 1 6.59 7.08a.625.625 0 0 0 .7-1.035 4.488 4.488 0 0 0-1.68-.69 5.223 5.223 0 0 1 5.096-4.104 5.221 5.221 0 0 1 5.174 4.57 4.489 4.489 0 0 0-.488.305.625.625 0 1 0 .731 1.013 3.245 3.245 0 0 1 1.912-.616 3.278 3.278 0 0 1 3.203 2.61.625.625 0 0 0 1.225-.251 4.533 4.533 0 0 0-4.428-3.61 4.54 4.54 0 0 0-.958.105C16.556 2.328 13.9 0 10.705 0zm5.192 10.64a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.054.514c0 .181.018.353.054.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .309-.296c.08-.124.137-.267.173-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.309-.291.917.917 0 0 0-.46-.108zm6.486 0a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.053.514c0 .181.017.353.053.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .31-.296c.078-.124.136-.267.172-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.308-.291.916.916 0 0 0-.461-.108zm-8.537.068l-.84.618.313.43.476-.368v1.877h.603v-2.557zm6.486 0l-.841.618.314.43.477-.368v1.877h.603v-2.557zm-4.435.445c.08 0 .143.028.193.084.05.057.087.127.114.21.026.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.028.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.248.248 0 0 1-.195-.086.584.584 0 0 1-.118-.209 1.245 1.245 0 0 1-.056-.27 2.645 2.645 0 0 1 0-.533c.01-.096.029-.186.056-.27a.583.583 0 0 1 .118-.209.25.25 0 0 1 .195-.084zm6.486 0c.08 0 .144.028.193.084.05.057.087.127.114.21.027.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.027.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.249.249 0 0 1-.195-.086.581.581 0 0 1-.117-.209 1.245 1.245 0 0 1-.056-.27 2.642 2.642 0 0 1 0-.533c.01-.096.028-.186.056-.27a.58.58 0 0 1 .117-.209.25.25 0 0 1 .195-.084zm-2.191 3.51a.93.93 0 0 0-.463.109.908.908 0 0 0-.312.291c-.08.122-.139.263-.175.426a2.383 2.383 0 0 0-.054.514c0 .18.018.353.054.516.036.164.094.308.175.432a.91.91 0 0 0 .312.296.92.92 0 0 0 .463.11c.18 0 .333-.037.46-.11a.892.892 0 0 0 .308-.296 1.32 1.32 0 0 0 .174-.432c.036-.163.054-.335.054-.516 0-.18-.018-.352-.054-.514a1.274 1.274 0 0 0-.174-.426.89.89 0 0 0-.309-.291.918.918 0 0 0-.46-.108zm-6.402.07l-.841.617.314.43.476-.369v1.878h.604v-2.557zm2.125 0l-.841.617.314.43.477-.369v1.878h.603v-2.557zm2.116 0l-.84.617.313.43.477-.369v1.878h.603v-2.557zm2.16.443c.08 0 .144.028.194.085a.605.605 0 0 1 .114.21c.026.083.044.172.053.269a2.639 2.639 0 0 1 0 .532 1.28 1.28 0 0 1-.053.27.585.585 0 0 1-.114.21.244.244 0 0 1-.193.085.25.25 0 0 1-.196-.085.589.589 0 0 1-.117-.21 1.245 1.245 0 0 1-.056-.27 2.597 2.597 0 0 1 0-.532c.01-.097.028-.186.056-.27a.589.589 0 0 1 .117-.209.249.249 0 0 1 .196-.085zm-6.729 3.073a.676.676 0 0 0-.335.078.661.661 0 0 0-.227.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.93.93 0 0 0 .127.313.65.65 0 0 0 .227.215c.092.053.204.08.335.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .225-.215c.057-.09.1-.194.125-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.931.931 0 0 0-.125-.31.658.658 0 0 0-.225-.21.667.667 0 0 0-.334-.08zm3.086 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.907.907 0 0 0-.127.31 1.69 1.69 0 0 0-.04.373c0 .131.013.256.04.375a.928.928 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.752 1.752 0 0 0 0-.748.94.94 0 0 0-.126-.31.657.657 0 0 0-.224-.21.667.667 0 0 0-.334-.08zm5.108 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.931.931 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08.13 0 .243-.027.334-.08a.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.943.943 0 0 0-.126-.31.657.657 0 0 0-.224-.21.668.668 0 0 0-.334-.08zm-6.658.05l-.61.448.227.311.346-.266v1.362h.438v-1.856zm3.068 0l-.61.448.227.311.346-.266v1.362h.438v-1.856zm5.108 0l-.611.448.228.311.346-.266v1.362h.438v-1.856zm-9.712.322c.058 0 .105.02.14.062a.421.421 0 0 1 .083.151.96.96 0 0 1 .04.196 1.932 1.932 0 0 1 0 .386.954.954 0 0 1-.04.197.421.421 0 0 1-.083.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.427.427 0 0 1-.085-.153.887.887 0 0 1-.041-.197 1.96 1.96 0 0 1 0-.386.893.893 0 0 1 .04-.196.42.42 0 0 1 .086-.151.181.181 0 0 1 .141-.062zm3.086 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.94.94 0 0 1 .04.196 1.906 1.906 0 0 1 0 .386.93.93 0 0 1-.04.197.421.421 0 0 1-.082.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.42.42 0 0 1-.086-.153.846.846 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.849.849 0 0 1 .041-.196.42.42 0 0 1 .086-.151.182.182 0 0 1 .141-.062zm5.108 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.92.92 0 0 1 .04.196 1.963 1.963 0 0 1 0 .386.943.943 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.061.18.18 0 0 1-.142-.06.437.437 0 0 1-.085-.153.95.95 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.959.959 0 0 1 .04-.196.47.47 0 0 1 .086-.151.181.181 0 0 1 .142-.062zm-1.684 1.814a.675.675 0 0 0-.336.079.66.66 0 0 0-.227.21.91.91 0 0 0-.127.31 1.731 1.731 0 0 0 0 .748.939.939 0 0 0 .127.314c.059.09.134.162.227.215.093.053.205.08.336.08a.66.66 0 0 0 .334-.08.648.648 0 0 0 .224-.215c.058-.09.1-.195.126-.314a1.737 1.737 0 0 0-.001-.747.928.928 0 0 0-.125-.31.65.65 0 0 0-.224-.211.668.668 0 0 0-.334-.079zm3.063 0a.676.676 0 0 0-.336.079.664.664 0 0 0-.227.21.906.906 0 0 0-.127.31 1.74 1.74 0 0 0 0 .748.936.936 0 0 0 .127.314.66.66 0 0 0 .227.215c.092.053.204.08.336.08a.654.654 0 0 0 .334-.08.648.648 0 0 0 .223-.215c.058-.09.1-.195.126-.314a1.74 1.74 0 0 0 0-.747.928.928 0 0 0-.126-.31.65.65 0 0 0-.223-.211.666.666 0 0 0-.334-.079zm-1.545.05l-.611.448.228.312.346-.267v1.363h.438v-1.856zm-1.518.323c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.91.91 0 0 1 .04.195 1.966 1.966 0 0 1 0 .387.951.951 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.06.18.18 0 0 1-.142-.06.428.428 0 0 1-.085-.152.914.914 0 0 1-.04-.197 1.96 1.96 0 0 1-.011-.195c0-.058.003-.122.01-.192a.923.923 0 0 1 .041-.195c.02-.06.048-.11.085-.152a.181.181 0 0 1 .142-.061zm3.063 0c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.94.94 0 0 1 .04.195 1.91 1.91 0 0 1 0 .387.93.93 0 0 1-.04.197.422.422 0 0 1-.083.152.175.175 0 0 1-.14.06.18.18 0 0 1-.141-.06.423.423 0 0 1-.085-.152.907.907 0 0 1-.04-.197 1.95 1.95 0 0 1 0-.387.915.915 0 0 1 .04-.195c.02-.06.048-.11.085-.152a.182.182 0 0 1 .142-.061zm-9.713.185a.465.465 0 0 0-.232.055.456.456 0 0 0-.157.146.627.627 0 0 0-.089.215 1.168 1.168 0 0 0-.027.259c0 .09.009.177.027.26a.648.648 0 0 0 .089.216c.04.063.093.112.157.149a.459.459 0 0 0 .232.056c.09 0 .168-.02.231-.056a.45.45 0 0 0 .156-.149.67.67 0 0 0 .087-.217 1.218 1.218 0 0 0 0-.518.647.647 0 0 0-.087-.215.448.448 0 0 0-.156-.146.458.458 0 0 0-.23-.055zm1.052.035l-.423.31.158.217.24-.185v.944h.303v-1.286zm-1.052.224c.04 0 .073.014.097.042a.284.284 0 0 1 .057.105.69.69 0 0 1 .028.136c.004.049.007.092.007.133 0 .04-.003.086-.007.135a.684.684 0 0 1-.028.136.285.285 0 0 1-.057.105.123.123 0 0 1-.097.043.125.125 0 0 1-.098-.043.298.298 0 0 1-.059-.105.612.612 0 0 1-.028-.136 1.39 1.39 0 0 1 0-.268.62.62 0 0 1 .028-.136.297.297 0 0 1 .06-.105.125.125 0 0 1 .097-.042zm3.775 1.394a.463.463 0 0 0-.232.054.452.452 0 0 0-.157.146.621.621 0 0 0-.088.214 1.19 1.19 0 0 0 0 .519.641.641 0 0 0 .088.217.46.46 0 0 0 .157.15.458.458 0 0 0 .232.054.454.454 0 0 0 .232-.055.45.45 0 0 0 .155-.149.664.664 0 0 0 .087-.217 1.189 1.189 0 0 0 0-.519.642.642 0 0 0-.087-.214.446.446 0 0 0-.155-.146.459.459 0 0 0-.232-.054zm1.052.034l-.423.31.158.216.24-.185v.945h.303V22.68zm-1.052.223c.04 0 .073.014.098.043a.3.3 0 0 1 .057.105.643.643 0 0 1 .027.135 1.31 1.31 0 0 1 0 .268.654.654 0 0 1-.027.137.307.307 0 0 1-.057.105.124.124 0 0 1-.098.042.125.125 0 0 1-.098-.042.293.293 0 0 1-.059-.105.618.618 0 0 1-.028-.137 1.364 1.364 0 0 1 0-.268.612.612 0 0 1 .028-.135.287.287 0 0 1 .06-.105.123.123 0 0 1 .097-.043z"/></svg>
</a>
<!-- Twitch -->
<a href="https://www.twitch.tv/notdabenjamin" title="Twitch" aria-label="Twitch" target="_blank">
<svg viewBox="0 0 24 24"><path d="M4 2l-2 4v14h6v3l3-3h4l5-5V2H4z"/><line x1="11" y1="7" x2="11" y2="13" stroke-linecap="round"/><line x1="16" y1="7" x2="16" y2="13" stroke-linecap="round"/></svg>
</a>
</div>
</div>
<!-- Scrollable content -->
<div id="scroll">
<div id="inner">
<!-- HERO -->
<section id="hero">
<p class="eyebrow"><a href="sitemap.html">Sitemap</a>· Last Updated 4/25/26 :3</p>
<div class="ornament">✦</div>
<p class="eyebrow">He/Him</p>
<h1 class="hero-title">Introduction</h1>
<p class="hero-sub">Hello! I am NotDaBenjamin! I am a young bisexual, kitty-loving, developer, gamer, and goober.</p>
<p>If the website looks broken, try zooming in or out using Ctrl +/-.</p>
<div class="ornament">✦</div>
<div>Announcement:<br><strong>
✦ Bentown has been rebranded to Gamebird and is now under the Github Organization NDBgamebird! Learn more <a href="https://github.com/NDBGamebird/GameBird">here</a>! ✦
</strong>
<br>
<a href="#cursorToggle" class="le">chicken</a>
<a href="#sectionscroll2" class="le">about me :D</a>
<a href="#favs" class="le">my favorites</a>
<a href="#cursorToggle" class="le">footer</a>
<a href="#Discord" class="le">discord server</a>
<br><br>
<div id="gitbutton"><a href="https://github.com/notdabenjamin"><img src="https://img.shields.io/badge/github-notdabenjamin-darkblue?logo=github
" width="133" height="18"></a></div>
<div id="sus" style="display: none;"><a href="kindasusngl.html"><img src="https://img.shields.io/badge/%E0%B6%9E%20NDBenjamin-is%20Sus-red"></a></div><br>
<div class="location">
<i class="fa-solid fa-location-dot"></i>
<img height="24" width="24"src="https://img.icons8.com/?size=100&id=Hgs4VioSpGBH&format=png&color=FFFFFF">
<span>Based in <a href="https://maps.app.goo.gl/4ECASrJT4ygjRwCh8">Kansas, United States</a></span>
<br>
<iframe src="https://discord.com/widget?id=1501569405199450172&theme=dark" width="750" height="275" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts" id="DiscordWide"></iframe>
</div>
</div>
</section>
<!-- SECTIONS — alternate automatically via CSS nth-child -->
<div class="sections" id="sectionscroll2">
<!-- 1 → text left, image right -->
<div class="section">
<div class="section-text">
<span class="section-tag">---</span>
<h2 class="section-heading">My interests</h2>
<p class="section-body">I hate playing sports, but watching them is super entertaining! I love gaming and spending time with my cats. Streaming isn't my main priority, but i'm starting to get more into it. Some games I like are The Portal Series, Fortnite, Splitgate, The Finals, Firewatch, Battlefield, Content Warning, Batman: Arkam Shadow VR, Karlson, and A LOT MORE!</p>
<a href="kitty.html" class="section-link">
My Cats :D
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
</a>
</div>
<div class="section-img">
<img src="img/JacksonIMG1.jpg" alt="Cat :3">
</div>
</div>
<!-- 2 → image left, text right -->
<div class="section">
<div class="section-text">
<span class="section-tag">--- </span>
<h2 class="section-heading">Who I am</h2>
<p class="section-body">Well, I'm NotDaBenjamin, duh. But, what should you call me and what am I like? I'm a young bisexual, with friends & family who support me. I also have the IQ of a dead goldfish (Notice how dead goldfish doesn't have an IQ). I go by <strong>He/Him</strong> and you can call me NotDaBenjamin, Benjamin, or Goober! (Or really any other name you want as long as you know it won't offend me, if you have to question it, it's bad.)</p>
<a href="projects.html" class="section-link">
My Projects
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
</a>
</div>
<div class="section-img">
<img src="img/Bisexual_Pride_Flag.svg" alt="Bisexual Pride Flag">
</div>
</div>
<!-- 3 → text left, image right -->
<div class="section">
<div class="section-text">
<span class="section-tag">--- </span>
<h2 class="section-heading">What I do</h2>
<p class="section-body">I really like playing games and spending my time making some of my own! I am currently in the process of learning GDscript and transitioning from Construct 3 -> Godot. I've learned large amounts of python ever since I was 4.</p>
<a href="Blog.html" class="section-link">
Visit the Blog
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
</a>
</div>
<div class="section-img">
<img src="img/Godot_icon.svg" alt="Godot Logo">
</div>
</div>
<div class="section">
<div class="section-text">
<span class="section-tag">--- </span>
<h2 class="section-heading">Games I play</h2>
<p class="section-body"><strong>Favorite Game: <a href="https://splitgate.com">Splitgate: Arena Reloaded</a></strong><br>Splitgate (Arena Reloaded) is Halo, but with a huge twist. You use portals to make your way around the maps. This game is one of the most detailed and fun games I've ever played, and the best part is that is completely free! <br>Fun Fact: As of 4/21/26, I have over 2,300 teabags, and am #4 on the leaderboard.</p>
<h4><div class="ten">SPLITGATE IS NOT A PROJECT OF MINE, I WAS NOT TOLD TO PUT THIS HERE. SPLITGATE IS OWNED BY 1047 GAMES AND THEY ARE NOT RESPONSIBLE FOR WHAT IS ON THIS WEBSITE. THE SCREENSHOT IS OWNED BY 1047. GO CHECK OUT THEIR GAMES. (:</div></h4>
<a href="https://splitgate.com" class="section-link">
Play Splitgate
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
</a>
</div>
<div class="section-img">
<img src="img/splitgate.png" alt="Godot Logo">
</div>
</div>
<h2><strong class="mobilefavs">Favorites are disabled on mobile, please use a PC or Laptop.</strong></h2>
<div class="favs" id="favs">
<h1>Favorites (Updated Often)</h1>
<h2 id="Favorites">My Favorite Song:</h2>
<iframe src="https://notdb.pages.dev/embed/spotifyfavorite" width="625" height="177" title="Spotify Favorite Song"></iframe>
<h2 id="Favorites">My Favorite Movie:</h2>
<iframe width="585" height="335" src="https://notdb.pages.dev/embed/moviefavorite" title="Favorite Movie Trailer" allowfullscreen></iframe>
<h2 id="Favorites">My Favorite Show:</h2>
<iframe width="585" height="335" src="https://notdb.pages.dev/embed/showfavorite" title="Favorite Movie Trailer" allowfullscreen></iframe>
</div>
</div><!-- /sections -->
<div class="footer-gap"></div>
<div class="footer-gap"></div>
<div class="cursor-message">
<p>My website is completely <a href="https://github.com/notdabenjamin/Website" target="_blank">Open Source</a>!<br><a href="contact.html">Contact</a> <a href="index.html">Homepage</a> <a href="sitemap.html">Sitemap</a><br></p>
<br>
<a href="https://neocities.org" target="_blank"><img src="img/neocities.png"></a>
<br><br>
<img src="img/qr/notdb.png" height="128" width="128" style="margin-right: 10px;">
<img src="img/qr/notdbDARK.png" height="128" width="128">
<p>QR codes powered by <a href="https://tr.ee" target="_blank">tr.ee</a> by linktree, but I added da dino :D (worth it)</p>
<a href="img/qr/notdb.png" download="notdbqrtreelight.jpg">Download light</a>
<a href="img/qr/notdbDARK.png" download="notdbqrtreedark.jpg">Download dark</a>
</div>
<br>
<iframe src="https://discord.com/widget?id=1501569405199450172&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts" id="Discord"></iframe>
<!-- Cursor Toggle -->
<div id="cursor-toggle-wrap">
<label>
<input type="checkbox" id="cursorToggle">
Chicken Wing Mode
</label>
</div>
© <script>document.write(new Date().getFullYear())</script> Super Evil Laboratory That Does Super Evil Laboratory Things<br>Doing evel since 152,000,000 BCE
<br><br><br>
<a href="notdb.pages.dev/g">Github</a>
<a href="https://linktr.ee/NotDaBenjamin">Linktree</a>
<a href="https://x.com/NotDaBenjamin">Twitter/X</a>
<a href="https://bsky.app/profile/notdabenjamin.neocities.org">Bluesky</a>
<a href="https://discord.gg/T3Xd3WHgXK">Discord Server</a>
<a href="https://notdb.pages.dev/updates/mostrecentproject">My Latest Project</a>
<a href="https://www.youtube.com/@NotDaBenjamin">Youtube</a>
<a href="https://discord.com/users/1270155749213081613">Discord</a>
<a href="https://tryhackme.com/p/NotDaBenjamin">TryHackMe</a>
<a href="https://www.twitch.tv/notdabenjamin">Twitch</a>
</div><!-- /inner -->
</div><!-- /scroll -->
<!-- Frame — always on top -->
<img
id="frame"
src="WebFrame1080.png"
alt=""
draggable="false"
oncontextmenu="return false;"
/>
</div>
<script>
(function () {
const intro = document.getElementById('intro');
const video = document.getElementById('intro-video');
const site = document.getElementById('site');
const frame = document.getElementById('frame');
frame.addEventListener('contextmenu', e => e.preventDefault());
function revealSite() {
intro.classList.add('fade-out');
site.classList.add('visible');
intro.addEventListener('transitionend', () => intro.remove(), { once: true });
}
video.addEventListener('ended', revealSite);
video.addEventListener('error', () => setTimeout(revealSite, 400));
const p = video.play();
if (p !== undefined) p.catch(revealSite);
})();
/* ── Section scroll-reveal ── */
(function () {
const sections = document.querySelectorAll('.section');
const root = document.getElementById('scroll');
const io = new IntersectionObserver((entries) => {
entries.forEach((entry, i) => {
if (entry.isIntersecting) {
setTimeout(() => entry.target.classList.add('in-view'), i * 60);
io.unobserve(entry.target);
}
});
}, { threshold: 0.12, root });
sections.forEach(s => io.observe(s));
})();
</script>
<script>
const cursorToggle = document.getElementById("cursorToggle");
let cursorRainInterval = null;
function spawnCursorRain() {
const img = document.createElement("img");
img.src = "img/cursor.png";
img.className = "cursor-rain";
// random size
const size = Math.floor(Math.random() * 50) + 20;
img.style.width = size + "px";
// random x position
img.style.left = Math.random() * window.innerWidth + "px";
// random duration
const dur = (Math.random() * 3 + 3).toFixed(2);
img.style.animationDuration = dur + "s";
document.body.appendChild(img);
setTimeout(() => {
img.remove();
}, dur * 1000);
}
function startCursorEffects() {
document.body.classList.add("custom-cursor");
if (!cursorRainInterval) {
cursorRainInterval = setInterval(spawnCursorRain, 333);
}
}
function stopCursorEffects() {
document.body.classList.remove("custom-cursor");
clearInterval(cursorRainInterval);
cursorRainInterval = null;
document.querySelectorAll(".cursor-rain").forEach(el => el.remove());
}
// Load saved state
if (localStorage.getItem("customCursor") === "on") {
cursorToggle.checked = true;
startCursorEffects();
console.log("localstorage Data 'customCursor' is on!")
}
cursorToggle.addEventListener("change", function() {
if (this.checked) {
localStorage.setItem("customCursor", "on");
startCursorEffects();
console.log("Chicken Wing Mode Enabled :D")
} else {
localStorage.setItem("customCursor", "off");
stopCursorEffects();
console.log("Chicken Wing Mode Disabled D:")
}
});
if (Math.random() < 0.05) {
document.getElementById('sus').style.display = 'block';
document.getElementById('gitbutton').style.display = 'none';
console.log("Sus button activated :3")
}
</script>
</body>
</html>