-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgalleryalienforce.html
More file actions
1275 lines (1145 loc) · 66.2 KB
/
galleryalienforce.html
File metadata and controls
1275 lines (1145 loc) · 66.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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary SEO -->
<title>Ben 10 Alien Force Gallery | Characters, Aliens & Villains</title>
<meta name="description"
content="Explore the Ben 10 Alien Force era featuring teenage Ben Tennyson, Gwen, Kevin Levin, and powerful new aliens like Swampfire, Humungousaur, and Big Chill. Discover heroes, alien roster, and iconic villains from the Alien Force saga.">
<meta name="keywords"
content="Ben 10 Alien Force, Alien Force Characters, Ben Tennyson Alien Force, Gwen Tennyson Alien Force, Kevin Levin Alien Force, Alien Force Aliens, Swampfire, Humungousaur, Big Chill, Alien X, Echo Echo, Chromastone, Ben 10 Villains, Highbreed, Aggregor, Albedo">
<meta name="author" content="AnkitRaj-[AS]">
<meta name="robots" content="index, follow">
<link rel="icon" href="Image/logoben10.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- GOOGLE FONTS -->
<!-- use like : [font-family:'Orbiton'] as class -->
<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=Agdasima:wght@400;700&family=Alumni+Sans+SC:ital,wght@0,100..900;1,100..900&family=Audiowide&family=Bangers&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barrio&family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Black+Ops+One&family=Creepster&family=Diplomata&family=Fontdiner+Swanky&family=Freckle+Face&family=Goldman:wght@400;700&family=Gruppo&family=Keania+One&family=Luckiest+Guy&family=Matemasie&family=Monoton&family=Nosifer&family=Orbitron:wght@400..900&family=Pacifico&family=Plaster&family=Poiret+One&family=Press+Start+2P&family=Protest+Guerrilla&family=Quicksand:wght@300..700&family=Righteous&family=Rubik+Wet+Paint&family=Shojumaru&family=Sixtyfour&family=UnifrakturCook:wght@700&family=Wallpoet&display=swap"
rel="stylesheet">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Ben 10 Alien Force Gallery | Characters, Aliens & Villains",
"url": "https://legitankit.github.io/Ben10Project/galleryalienforce.html",
"description": "Explore the Ben 10 Alien Force era featuring teenage Ben Tennyson, Gwen, Kevin Levin, and powerful new aliens like Swampfire, Humungousaur, and Big Chill. Discover heroes, alien roster, and iconic villains from the Alien Force saga.",
"inLanguage": "en",
"isPartOf": {
"@type": "WebSite",
"name": "Ben 10 Universe",
"url": "https://legitankit.github.io/Ben10Project/"
},
"author": {
"@type": "Person",
"name": "Ankit Raj"
},
"publisher": {
"@type": "Person",
"name": "Ankit Raj"
},
"image": "https://legitankit.github.io/Ben10Project/Image/ogimage3.jpeg"
}
</script>
<style>
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(50, 230, 100, 0.5);
border-radius: 10px;
border: 2px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(5px);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(50, 230, 100, 0.7);
}
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: rgba(50, 230, 100, 0.5) rgba(0, 0, 0, 0.1);
}
</style>
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://legitankit.github.io/Ben10Project/galleryalienforce.html">
<meta property="og:title" content="Ben 10 Alien Force Gallery | Heroes, Alien Roster & Villain Syndicate">
<meta property="og:description"
content="Dive into the Alien Force saga of Ben 10. Meet the teenage heroes, explore the powerful alien roster including Swampfire, Humungousaur and Alien X, and face dangerous villains like Highbreed, Aggregor and Albedo.">
<meta property="og:image" content="https://legitankit.github.io/Ben10Project/Image/ogimage3.jpeg">
<meta property="og:site_name" content="Ben 10 Fan Encyclopedia">
<meta property="og:locale" content="en_US">
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- icons from - icones.js.org -->
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
<!-- WOW JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<!-- daisy ui -->
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<!-- Background Music -->
<audio id="bgMusic" src="Audio/omnitrix.mp3"></audio>
</head>
<!-- BODY -->
<body class="overflow-x-hidden relative selection:bg-emerald-400/40 selection:text-emerald-400">
<!-- ================= BACKGROUND 1 (0 - 300vh) ================= -->
<div class="absolute top-0 left-0 w-full h-[350vh]">
<div class="sticky top-0 h-screen -z-10 overflow-hidden bg-black/50 inset-0">
<!-- Video -->
<video autoplay muted loop playsinline class="absolute inset-0 w-full h-full object-cover">
<source src="Video/Cosmic_space_image_animation_42a507be59.mp4" type="video/mp4">
</video>
<!-- Dark Overlay -->
<div class="absolute inset-0 bg-black/50"></div>
</div>
</div>
<!-- ================= BACKGROUND 2 (300 - 600vh) ================= -->
<div class="absolute top-[350vh] left-0 w-full h-[300vh]">
<div class="sticky top-0 h-screen -z-10">
<!-- 🔹 Background Grid -->
<div class="absolute inset-0 -z-10 grid grid-cols-3 grid-rows-3 gap-0 ">
<img src="Image/sketchbg1.jpg" class="w-full h-full object-cover">
<img src="Image/sketchbg6.png" class="w-full h-full object-cover row-span-2">
<img src="Image/sketchbg5.jpg" class="w-full h-full object-cover">
<img src="Image/sketchbg4.webp" class="w-full h-full object-cover row-span-2">
<img src="Image/sketchbg2.webp" class="w-full h-full object-cover">
<img src="Image/sketchbg3.jpg" class="w-full h-full object-cover">
<img src="Image/sketchbg7.jpg" class="w-full h-full object-cover">
</div>
<!-- Dark Overlay -->
<div class="absolute inset-0 bg-black/60"></div>
</div>
</div>
<!-- ================= BACKGROUND 3 (600 - 900vh) ================= -->
<div class="absolute top-[650vh] left-0 w-full h-[300vh]">
<div class="sticky top-0 h-screen -z-10">
<div class="absolute inset-0 -z-10 grid grid-cols-3 grid-rows-3 gap-0 ">
<img src="Image/villianbg1.png" class="w-full h-full object-cover row-span-3">
<img src="Image/villianbg2.png" class="w-full h-full object-cover row-span-3">
<img src="Image/villianbg4.png" class="w-full h-full object-cover row-span-3">
</div>
<!-- Dark Overlay -->
<div class="absolute inset-0 bg-black/60"></div>
</div>
</div>
<!-- aside -->
<aside class="fixed top-40 left-10 z-[9999] group">
<div class="flex items-center gap-0">
<p
class="[writing-mode:vertical-rl] text-lime-400 text-sm tracking-widest group-hover:scale-110 group-hover:drop-shadow-[0_0_10px_lime] group-hover:scale-y-150 [font-family:'Bellota_Text']">
Classic-2005
</p>
<a href="gallery.html?dir=right">
<iconify-icon icon="mingcute:arrow-left-circle-line"
class="opacity-80 hover:opacity-100 hover:scale-110 hover:drop-shadow-[0_0_10px_lime] text-lime-400 transition-all"
stroke="currentColor" width="25" height="25">
</iconify-icon>
</a>
</div>
<!-- icon -->
<a class="fixed bottom-10 right-8 " href="#"><iconify-icon icon="cuida:arrow-up-circle-outline" width="25"
height="25"
class="opacity-80 hover:opacity-100 hover:scale-110 hover:drop-shadow-[0_0_10px_lime] text-lime-400"
stroke="currentColor"></iconify-icon></a>
</aside>
<aside class="fixed top-40 right-10 z-[9999] group">
<div class="flex items-center gap-0">
<a href="galleryultimatealiens.html?dir=left">
<iconify-icon icon="mingcute:arrow-right-circle-line"
class="opacity-80 hover:opacity-100 hover:scale-110 hover:drop-shadow-[0_0_10px_lime] text-lime-400 transition-all"
stroke="currentColor" width="25" height="25">
</iconify-icon>
</a>
<p
class="[writing-mode:vertical-rl] text-lime-400 text-sm tracking-widest group-hover:scale-110 group-hover:drop-shadow-[0_0_10px_lime] group-hover:scale-y-150 [font-family:'Bellota_Text']">
ultimate Alien
</p>
</div>
</aside>
<!-- animation div -->
<!-- <div class="page animate__animated animate__slideInRight animate__faster"> -->
<div id="content">
<!-- HEADER -->
<header class="relative w-full z-20 text-white px-8 py-6">
<!-- Logo -->
<img src="Image/img2.png" alt="Ben 10 Logo" class="absolute top-6 left-8 h-10 w-auto">
<!-- Back Button -->
<a href="index.html" class="absolute top-6 right-8
text-grey
border border-emerald-400/40
px-5 py-1.5 rounded-full
hover:text-lime-400
transition [font-family:'Goldman']">
Back to Home
</a>
<div class="relative top-8">
<!-- Heading -->
<h1 class="text-center text-6xl font-black
text-lime-400
tracking-widest
drop-shadow-[0_0_8px_#84cc16]
hover:drop-shadow-[0_0_25px_#84cc16]
hover:tracking-[0.4em]
animate-pulse
hover:text-white
transition-all duration-500 [font-family:'Orbitron']">
Alien Force Collection
</h1>
<!-- Paragraph -->
<p class="text-center text-xl font-mono mt-4
text-cyan-400
tracking-widest
drop-shadow-[0_0_8px_#00ffff]
hover:drop-shadow-[0_0_25px_#00ffff]
hover:tracking-[0.3em]
hover:text-white
transition-all duration-500">
Alien Force — The era where Ben returns as a teenage hero to face greater cosmic threats.
</p>
</div>
</header>
<!-- ================= CONTENT ================= -->
<main class="text-white">
<!-- SECTION -1 ✅-->
<section class="relative z-30 flex flex-wrap justify-center gap-20 p-2 h-[330vh]">
<!-- <aside class="fixed top-40 right-10 z-20 "><a href="test9.html"><iconify-icon
icon="mingcute:arrow-right-circle-line"
class="opacity-80 hover:opacity-100 hover:scale-110 hover:drop-shadow-[0_0_10px_lime] w-8 h-8 text-lime-400 transition-all"
stroke="currentColor" width="30" height="30"></iconify-icon></a><br>
<p class="writing-mode-vertical"></p>
</aside> -->
<!-- Center Title -->
<h1 class="absolute w-full text-center top-45 left-1/2 -translate-x-1/2 text-6xl font-black
text-emerald-500
tracking-widest
drop-shadow-[0_0_8px_#059669]
hover:drop-shadow-[0_0_25px_#059669]
hover:tracking-[0.4em]
hover:text-white
transition-all duration-500 [font-family:'Plaster']">
Core Ensemble
</h1>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/ben4.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Power matured with purpose,” a calmer teenage hero balancing leadership, strategy, and
growing cosmic responsibilities.<br>
“I’m not the same kid anymore.”<br>» Ben Tennyson</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/gwen2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Magic refined into mastery,” an Anodite-powered warrior balancing intelligence, compassion,
and explosive energy constructs.<br><br>
“I can handle this.” <br>» Gwen Tennyson </div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/kevin2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Redemption through resilience,” a reformed anti-hero using absorbed alien powers to fight
beside former enemies.<br><br>
“I’m trying to do better.”<br> » Kevin Levin</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/grandpamax2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Legend in the shadows,” a missing mentor whose past as a master Plumber inspires the next
generation to rise.<br><br>
“Being a hero means never backing down.” <br>» Grandpa Max</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/julie2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Heart beside the hero,” a loyal and compassionate partner who supports Ben while bravely
standing her ground during alien threats.<br><br>
“I’m not just your girlfriend, Ben — I can handle this too.”<br> » Julie Yamamoto</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/ship2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“More than metal and code,” a tech-organic Galvanic Mechamorph companion blending into
vehicles while protecting friends with unwavering loyalty.
Happy metallic chirping sounds.<br><br>» Ship</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/paradox2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Master of moments and mysteries,” an eccentric time traveler guiding heroes across
timelines with cryptic wisdom and perfectly timed interventions.<br>
“Time is merely a suggestion, my boy.”<br> » Professor Paradox</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/reiny2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“From conqueror to conscience,” a Highbreed who rejects supremacy and chooses redemption by
standing alongside Ben against his own kind.<br>
“I was wrong… and I will make it right.” <br>» Reiny</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/helen2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Speed beyond sight,” a fearless Plumber recruit whose lightning reflexes turn every
battlefield into a blur of motion.<br> <br>
“Try to keep up!” <br>» Helen Wheels</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/manny2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Powerhouse with purpose,” a super-strong Plumber recruit using raw strength to shield
teammates and crush overwhelming threats.<br>
“Leave the heavy lifting to me.” <br>» Manny Armstrong</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/alan2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Fire in his veins,” a half-Pyronite Plumber recruit balancing human heart with blazing
alien power.<br><br><br>
“I’m more than just flames.”<br> » Alan Albright</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
<article class="flex flex-col mt-20 ">
<div class="hover-3d h-80 m-3 wow animate__animated animate__zoomIn">
<!-- content -->
<figure class="w-60 rounded-2xl border border-emerald-500 shadow-lg shadow-green-500/30">
<img src="Gallery/pierce2.png" alt="Tailwind CSS 3D card"
class="w-full h-full object-cover rounded-xl" />
<!-- <div class="text-center text-white p-4 text-xl"> BEN </div> -->
</figure>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="hover-3d ml-2.5 wow animate__animated animate__backInUp">
<!-- content -->
<div
class="w-60 text-white rounded-2xl border border-emerald-500 text-center p-2 shadow-lg shadow-green-500/50 drop-shadow-[0_0_20px_rgba(0,255,150,0.8)]">
“Sharp aim, sharper courage,” a dependable Plumber ally who joins the fight with steady
resolve and tactical precision.<br><br><br>
“Point me at the target.”<br> » Pierce Wheels</div>
<!-- 8 empty divs needed for the 3D effect -->
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</article>
</section>
<!-- section 2 -->
<section class="relative z-10 h-[300vh] flex flex-wrap justify-center gap-20 items-start p-10 text-black"
id="alienforcealiens">
<!-- <section class="relative z-10 flex flex-wrap justify-center gap-20 p-2 h-[330vh] "> -->
<div class="w-full flex flex-col justify-center items-center mt-10">
<h1 class="text-6xl font-black
text-emerald-500
tracking-widest
drop-shadow-[0_0_8px_#059669]
hover:drop-shadow-[0_0_25px_#059669]
hover:tracking-[0.4em]
hover:text-white
transition-all duration-500 [font-family:'Plaster']">
Alien Roster
</h1>
</div>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/alienx6.png" class="h-[400px] w-[400px]" />
<img src="Gallery/alienx2.png" class="h-[400px] w-[400px]" />
<img src="Gallery/alienx3.png" class="h-[400px] w-[400px]" />
<img src="Gallery/alienx4.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Alien X
<span class="font-bold">5000</span>
</h2>
<p class="italic">Reality warping, practically omnipotent</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300"
href="https://aliens.fandom.com/wiki/Celestialsapien" target="_blank">
Celestialsepian</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300"
href="https://ben10.fandom.com/wiki/Forge_of_Creation" target="_blank">
Forge of Creation</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/humungasaur1.png" class="h-[400px] w-[400px]" />
<img src="Gallery/humungasaur2.png" class="h-[400px] w-[400px]" />
<img src="Gallery/humungasaur5.png" class="h-[400px] w-[400px]" />
<img src="Gallery/humungasaur4.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Humungousaur
<span class="font-bold">1750</span>
</h2>
<p class="italic">Mega strength, size growth, high durability</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/jetray4.png" class="h-[400px] w-[400px]" />
<img src="Gallery/jetray2.png" class="h-[400px] w-[400px]" />
<img src="Gallery/jetray5.png" class="h-[400px] w-[400px]" />
<img src="Gallery/jetray6.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Jetray
<span class="font-bold">1700</span>
</h2>
<p class="italic">Flight, energy projection, underwater/air combat</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/chromastone5.png" class="h-[400px] w-[400px]" />
<img src="Gallery/chromastone4.png" class="h-[400px] w-[400px]" />
<img src="Gallery/chromastone7.png" class="h-[400px] w-[400px]" />
<img src="Gallery/chromastone2.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Chromastone
<span class="font-bold">1650</span>
</h2>
<p class="italic">Energy absorption & redirection, strong & durable</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/rath1.png" class="h-[400px] w-[400px]" />
<img src="Gallery/rath2.png" class="h-[400px] w-[400px]" />
<img src="Gallery/rath5.png" class="h-[400px] w-[400px]" />
<img src="Gallery/rath4.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Rath
<span class="font-bold">1600</span>
</h2>
<p class="italic">Brute force, combat skills, agility</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/bigchill1.png" class="h-[400px] w-[400px]" />
<img src="Gallery/bigchill3.png" class="h-[400px] w-[400px]" />
<img src="Gallery/bigchill4.png" class="h-[400px] w-[400px]" />
<img src="Gallery/bigchill5.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Big Chill
<span class="font-bold">1550</span>
</h2>
<p class="italic">Intangibility, freezing powers, flight</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/brainstorm1.png" class="h-[400px] w-[400px]" />
<img src="Gallery/brainstorm3.png" class="h-[400px] w-[400px]" />
<img src="Gallery/brainstorm2.png" class="h-[400px] w-[400px]" />
<img src="Gallery/brainstorm2.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Brainstorm
<span class="font-bold">1500</span>
</h2>
<p class="italic">Super intelligence, energy manipulation</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/swampfire1.png" class="h-[400px] w-[400px]" />
<img src="Gallery/swampfire5.png" class="h-[400px] w-[400px]" />
<img src="Gallery/swampfire3.png" class="h-[400px] w-[400px]" />
<img src="Gallery/swampfire6.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Swampfire
<span class="font-bold">1450</span>
</h2>
<p class="italic">Fire manipulation, regeneration, plant control</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/echoecho1.png" class="h-[400px] w-[400px]" />
<img src="Gallery/echoecho2.png" class="h-[400px] w-[400px]" />
<img src="Gallery/echoecho4.png" class="h-[400px] w-[400px]" />
<img src="Gallery/echoecho3.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Echo Echo
<span class="font-bold">1400</span>
</h2>
<p class="italic">Sound manipulation, duplicates, tactical attacks</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/spidermonkey9.png" class="h-[400px] w-[400px]" />
<img src="Gallery/spidermonkey3.png" class="h-[400px] w-[400px]" />
<img src="Gallery/spidermonkey8.png" class="h-[400px] w-[400px]" />
<img src="Gallery/spidermonkey5.png" class="h-[400px] w-[400px]" />
</figure>
<div class="card-body h-[200px] ">
<h2 class="card-title flex justify-between text-lime-600 font-bold">
Spidermonkey
<span class="font-bold">1350</span>
</h2>
<p class="italic">Agility, wall climbing, tail combat</p>
<p>Species : <a class="text-sky-600 hover:underline hover:decoration-sky-300" href="abcdefg"
target="_blank">
specie</a>
</p>
<p>Home World : <a class="text-red-600 hover:underline hover:decoration-red-300" href="abcdefg"
target="_blank">
homeworld</a>
</p>
</div>
</article>
<article class="bg-base-200 w-[240px] rounded-xl overflow-hidden ">
<figure class="relative hover-gallery max-w-60">
<img src="Gallery/goop1.png" class="h-[400px] w-[400px]" />
<img src="Gallery/goop5.png" class="h-[400px] w-[400px]" />
<img src="Gallery/goop5.png" class="h-[400px] w-[400px]" />
<img src="Gallery/goop5.png" class="h-[400px] w-[400px]" />
</figure>