-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
1435 lines (1294 loc) · 35.6 KB
/
Copy pathstyle.css
File metadata and controls
1435 lines (1294 loc) · 35.6 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
/* Reset all default browser spacing */
*{
margin:0;
padding:0;
}
/* Fade‑in animation for page load */
@keyframes fadeIn {
from {
opacity: 0; /* Start invisible */
transform: translateY(-100px); /* Slide down from above */
}
to {
opacity: 1; /* Fully visible */
transform: translateY(0); /* Back to normal position */
}
}
/* Apply fade‑in animation to the whole page */
body{
animation: fadeIn 1.2s ease forwards;
}
/* ===== Custom Font Imports ===== */
/* Main futuristic heading font */
@font-face {
font-family: "nasalization";
src: url(Fonts/Nasalization\ Rg.otf);
}
/* Polarix font — used for body text */
@font-face {
font-family: "Polarix";
src: url(Fonts/polarix-x_1.ttf);
}
/* Backup/alternate Polarix weight */
@font-face {
font-family: "Polarix";
src: url(Fonts/polarix_0.ttf);
}
/* Rostex — multiple variants for stylized headings */
@font-face {
font-family: 'Rostex';
font-style: normal;
font-weight: normal;
src: local('Rostex'), url(Fonts/RostexOblique-7OROB.woff) format('woff');
}
@font-face {
font-family: 'Rostex';
font-style: normal;
font-weight: normal;
src: local('Rostex'), url(Fonts/RostexObliqueoutline-vnPm4.woff) format('woff');
}
@font-face {
font-family: 'Rostex';
font-style: normal;
font-weight: normal;
src: local('Rostex'), url(Fonts/RostexOutline-woLow.woff) format('woff');
}
@font-face {
font-family: 'Rostex';
font-style: normal;
font-weight: normal;
src: local('Rostex'), url(Fonts/RostexRegular-m2r22.woff) format('woff');
}
/* Primary body styling with background color and horizontal overflow prevention */
body{
background-color:#11151C;
overflow-x: hidden;
}
/* Initial hidden state for elements designed to slide in from the left */
.fly-left{
opacity:0;
transform: translateX(-30px);
transition: opacity 0.8s ease, transform 1.6s ease;
}
/* Initial hidden state for elements designed to slide in from the right */
.fly-right{
opacity:0;
transform: translateX(30px);
transition: opacity 0.8s ease, transform 1.6s ease;
}
/* State applied to trigger visibility and reset the transform position during animation */
.fly-in-visible{
opacity:1;
transform: translateX(0);
}
/* Main header container featuring a background banner with a subtle dark overlay and performance-optimized rendering */
#header{
background-image: linear-gradient(rgba(0, 0, 0, 0.2)), url(Assets/website-banner.webp);
height:155px;
width:100%;
box-sizing:border-box;
background-size:cover;
background-position:center;
position:relative;
text-align:center;
background-repeat: no-repeat;
padding:0 20px;
padding-top:10px;
overflow:hidden;
will-change: transform;
transform: translateZ(0);
backface-visibility: hidden;
}
/* Primary heading typography with multi-layered shadows for depth and smooth transition properties for interaction */
.heading{
font-family:"nasalization";
color:whitesmoke;
font-size:130px;
text-decoration:none;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
margin:0;
flex-shrink:0;
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
text-shadow 0.25s ease;
transform-origin: bottom center;
cursor:pointer;
}
/* Hover effect for the heading that increases scale and adds a luminous white glow */
.heading:hover{
transform: scale(1.06);
text-shadow:
0 0 10px rgba(255,255,255,0.6),
0 0 20px rgba(255,255,255,0.4),
0 0 30px rgba(255,255,255,0.3);
}
/* Tactile active state for the main heading that shrinks slightly and maintains the glow effect when clicked */
.heading:active{
transform: scale(0.97);
text-shadow:
0 0 10px rgba(255,255,255,0.6),
0 0 20px rgba(255,255,255,0.4),
0 0 30px rgba(255,255,255,0.3);
}
/* Wrapper for the heading to handle alignment, centering, and specific layout offsets within the header */
.heading-wrap{
display:flex;
justify-content:center;
align-items:center;
transform:translate(-20px,-20px);
width:100%;
padding:0 480px 0 340px;
box-sizing:border-box;
}
/* Fixed positioning and dimensions for the SSC logo on the left side of the header */
.SSC{
width:140px;
height:140px;
position:absolute;
left:20px;
top:50%;
transform:translateY(-50%);
}
/* Fixed positioning and dimensions for the Artemis logo, placed adjacent to the SSC logo */
.artemis-logo{
width:140px;
position:absolute;
left:180px;
top:50%;
transform:translateY(-50%);
}
/* Transition and interaction properties for brand logos to ensure smooth scaling and glow effects */
.SSC,
.artemis-logo{
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
filter 0.25s ease;
transform-origin: bottom center;
cursor:pointer;
z-index:20;
}
/* Interactive hover state that scales the logos and applies a subtle outer glow */
.SSC:hover,
.artemis-logo:hover{
transform: translateY(-50%) scale(1.05);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Tactile active state feedback that slightly shrinks the logos upon being clicked */
.SSC:active,
.artemis-logo:active{
transform: translateY(-50%) scale(0.97);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Positioning and performance optimization for the crew-related visual element */
.ACREW{
width:400px;
position:absolute;
right:0px;
top:50%;
transform: translateY(-50%);
will-change: transform;
}
/* Navigation bar layout with background color, borders, and centralized flex alignment */
#navbar{
background:#D66853;
border-top:4px solid #7d4e57;
border-bottom:4px solid #7d4e57;
padding:12px 10px;
display:flex;
justify-content:center;
align-items:center;
gap:25px;
font-family:'Rostex';
z-index:10;
}
/* Typography and visual styling for navigation links and dropdown buttons, including multi-layered text shadows */
.nav-item a,
.dropdownbtn{
color:white;
font-size:20px;
font-family:'Rostex';
text-decoration:none;
background:none;
border:none;
cursor:pointer;
display:flex;
align-items:center;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Transition properties for smooth scaling and color changes on interaction */
#navbar .nav-item a,
#navbar .dropdownbtn{
transition: transform 0.2s ease, color 0.2s ease;
}
/* Interactive hover effects for navbar links and dropdown triggers */
#navbar .nav-item a:hover,
#navbar .dropdownbtn:hover{
transform: scale(1.05);
text-shadow: 0 0 8px rgba(255,255,255,0.5);
}
/* Styling for the separator elements positioned between navigation items */
.sep{
color:#7d4e57;
font-size:20px;
display:flex;
align-items:center;
justify-content:center;
padding:0 5px;
}
/* Relative container to anchor the absolute positioning of dropdown content */
.drop{
position:relative;
}
/* Hidden container for dropdown menus, revealed on hover */
.drop-content{
position:absolute;
display:none;
background:#7d4e57;
min-width:175px;
border-radius:10px;
top:100%;
left:0;
text-align:center;
font-size:small;
z-index:20;
}
/* Typography and spacing for links inside the dropdown menu */
.drop-content a{
padding:10px;
display:block;
color:white;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Toggles the visibility of the dropdown menu when the parent container is hovered */
.drop:hover .drop-content{
display:block;
}
/* Background and layout configuration for the first information section featuring the SLS launch */
#infosection1{
background-image:url(Assets/SLS-Launching.webp);
height:900px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
justify-content:flex-start;
align-items:flex-start;
padding:120px 8% 0 8%;
}
/* Typography and styling for the primary heading in the first information section */
.infoheading{
font-family:'Rostex';
font-size:60px;
z-index:10;
color:white;
margin-bottom:30px;
/* Multi-layered shadow effect to ensure text stands out against the dynamic background */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Typography and styling for the heading in the second information section */
.infoheading2{
font-family:'Rostex';
font-size:60px;
z-index:10;
color:white;
margin-bottom:30px;
/* Consistent shadow layers to maintain visual depth across different headings */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Layout container for information content with a maximum width and stacking priority */
.informationsection{
max-width:800px;
position:relative;
z-index:10;
}
/* Typography and positioning for the information text in the first section */
.information1{
font-family:"Polarix";
color:white;
font-size:30px;
text-align:center;
position:relative;
z-index:1;
/* Multi-layered shadow effect for depth and legibility */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Background and layout configuration for the second information section */
#infosection2{
background-image: url(Assets/SLS_Home.webp);
height:900px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
justify-content:flex-start;
align-items:flex-start;
padding:120px 8% 0 8%;
}
/* Styling for the text in section two, including specific alignment adjustments */
.information2{
font-family:"Polarix";
color:white;
font-size:30px;
margin-left:-100px;
text-align:center;
/* Consistent shadow layers to match the overall site aesthetic */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Information Section 3 Styles */
#infosection3{
background-image: url(Assets/Orion.webp);
height:900px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
justify-content:flex-start;
align-items:flex-end;
padding:120px 8% 0 8%;
}
/* Typography and styling for the heading in the third information section */
.infoheading-III{
font-family:'Rostex';
font-size:60px;
z-index:10;
color:white;
margin-bottom:30px;
/* Multi-layered shadow effect to ensure text stands out against the background */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Styling for the descriptive text in section three, featuring right-alignment */
.information3{
font-family:"Polarix";
color:white;
font-size:30px;
text-align:right;
/* Consistent shadow layers for depth and legibility */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Interactive Link and Button Styles */
.interactive-hyperlink{
font-size:20px;
background-color:#D66853;
font-family:'Rostex';
text-align:center;
color:white;
border-radius:10px;
text-decoration:none;
cursor:pointer;
z-index:20;
display:inline-block;
padding:10px 20px;
position:relative;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
filter 0.25s ease;
}
/* Slightly scales the link and adds a subtle glow effect on hover */
.interactive-hyperlink:hover{
transform: scale(1.05);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Vertically stacks buttons with consistent spacing and a top margin */
.button-stack{
display: flex;
flex-direction: column;
gap: 5px;
margin-top:20px;
}
/* Provides tactile feedback by slightly shrinking the link when clicked */
.interactive-hyperlink:active{
transform: scale(0.97);
}
/* Common Section Positioning */
#infosection1,
#infosection2,
#infosection3{
position: relative;
z-index: 1;
}
/* Button Wrapper Layouts */
#button-wrapper1{
margin-top:20px;
}
#button-wrapper2{
margin-top:20px;
text-align:center;
}
/* Footer Section Styling */
#footer{
width:100%;
height:350px;
display:flex;
justify-content:center;
align-items:center;
border-top: 2px solid #D66853;
box-shadow: 0 -4px 20px rgba(214,104,83,0.4);
background: radial-gradient(circle at 20% 50%, rgba(214,104,83,0.08), transparent 50%),
radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05), transparent 40%),
#11151C;
}
/* Footer GitHub Icon Animation */
.github-icon{
width:80px;
height:80px;
filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
transition: transform 0.25s ease;
}
/* Rotates the GitHub icon a full 360 degrees when the user hovers over the footer heading */
.footerheading:hover .github-icon{
transform: rotate(360deg);
}
/* Footer Heading Styling */
.footerheading{
display:block;
font-family:"nasalization";
color:whitesmoke;
font-size:50px;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
text-align:center;
position:relative;
text-decoration:none;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
margin:0;
flex-shrink:0;
cursor:pointer;
transition:transform .25s cubic-bezier(.25,.1,.25,1), text-shadow .25s ease;
transform-origin:bottom center;
}
/*footer heading animation after clicking on it*/
.footerheading::after{
content:'';
position:absolute;
left:0;
bottom:-4px;
width:0%;
height:2px;
background-color:#D66853;
transition: width 0.3s ease;
}
/* Expand the decorative underline to full width on hover */
.footerheading:hover::after{
width:100%;
}
/* Scale the footer heading and apply a luminous text shadow on hover */
.footerheading:hover{
transform:scale(1.06);
text-shadow:
0 0 10px rgba(255,255,255,0.6),
0 0 20px rgba(255,255,255,0.4),
0 0 30px rgba(255,255,255,0.3);
}
/* Slight shrink effect when clicking the footer heading for tactile feedback */
.footerheading:active{
transform:scale(0.97);
}
/* Artemis Introduction Section */
#artemis-main{
background-image:url(Assets/Artemis_intro.webp) ;
height:900px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
align-items: center;
justify-content:flex-start;
padding-top:80px;
}
/* Shared styling for Artemis main header and paragraph, featuring layered shadows for depth */
.artemis-main-header,
.artemis-main-paragraph {
color: white;
text-align: center;
margin-bottom: 30px;
/* Multi-layered shadow effect to ensure readability against the background image */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Typography and sizing for the primary Artemis introduction header */
.artemis-main-header {
font-family: 'Rostex';
font-size: 7rem;
margin-top: 0;
}
/* Styling for the main descriptive paragraph in the Artemis introduction section */
.artemis-main-paragraph {
font-family: "Polarix";
font-size: 3.125rem;
width: 1200px;
flex-shrink: 0;
}
/* Artemis Section 1 Styles */
#artemis-1{
background-image:url(Assets/Orion_section.webp) ;
height:900px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
align-items: center;
justify-content:flex-start;
padding-top:80px;
}
/* Styling for the Artemis 1 section header including typography and layered shadows */
.artemis-1-header{
font-family:'Rostex';
color:white;
font-size:10rem;
text-align:center;
margin:0 0 30px 0;
/* Multi-layered shadow effect for depth and readability */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Main descriptive paragraph styling for the Artemis 1 section */
.artemis-1-main{
font-family:"Polarix";
text-align:center;
color:white;
width:1400px;
font-size:2.8125rem;
margin-bottom:30px;
/* Consistent shadow styling for readability against backgrounds */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
flex-shrink:0;
}
#Artemis-1-Stats{
background-color:#1f286c;
width:1350px;
height:250px;
border-radius:20px;
/* Smooth transitions for scaling and text shadow changes */
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
text-shadow 0.25s ease;
transform-origin: bottom center;
cursor:pointer;
}
/* Scale and glow effect when hovering over the Artemis 1 stats container */
#Artemis-1-Stats:hover{
transform: scale(1.03);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Alignment and spacing for the statistics heading container */
.Stats-heading{
text-align:left;
padding-top:21px;
padding-left:23px;
}
/* Typography, color, and multi-layered shadow effects for the main stats heading */
.statsheading{
font-family:'Rostex';
color:#D66853;
width:600px;
font-size:2.8125rem;
/* Depth effect using multiple shadow layers */
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
text-shadow 0.25s ease;
transform-origin: bottom center;
cursor:pointer;
}
/* Scale and glow effect on hover for the stats heading */
.statsheading:hover{
transform: scale(1.03);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Slight shrink effect when clicking the stats heading */
.statsheading:active{
transform: scale(0.97);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Centered layout for the statistics wrapper */
.statswrapper{
width:100%;
display:flex;
justify-content: center;
}
/* Reset list styles for the statistics items */
.statistics{
list-style-type:none;
padding:0;
margin:0;
}
/* Specific positioning and width for the Artemis stats data table */
.Artemis-stats-table{
margin-left:20px;
list-style-type:none;
width:500px;
}
/* Visual styling for list items including font and complex shadows */
.list-decor{
list-style-type:none;
font-family:'Nasalization';
color:white;
font-size:25px;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
text-shadow 0.25s ease;
transform-origin: bottom center;
cursor:pointer;
}
/* Scale and glow interaction for decorative list items */
.list-decor:hover{
transform: scale(1.02);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Click feedback for decorative list items */
.list-decor:active{
transform:scale(0.98);
}
/* Manual positioning for the right-hand portion of the stats table */
.Artemis-stats-table-right{
margin-top:-155px;
margin-left:840px;
list-style-type:none;
width:500px;
}
/* Artemis 2 section hero layout with background image */
#artemis-2{
background-image:url(Assets/Artemis-II-wallpaper.webp) ;
height:900px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
align-items: center;
justify-content:flex-start;
padding-top:80px;
gap:10px;
}
/* Large stylized header for the Artemis 2 section */
.artemis-2-header{
font-family:'Rostex';
color:white;
font-size:10rem;
top:20px;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Styling for the main descriptive text in Artemis 2 section */
.artemis-2-main{
font-family:"Polarix";
text-align:center;
color:white;
width:1300px;
font-size:2.8125rem;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
flex-shrink:0;
}
/* Background and interactive transitions for Artemis 2 statistics card */
#Artemis-2-Stats{
background-color:#1f286c;
width:1350px;
height:250px;
border-radius:20px;
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
text-shadow 0.25s ease;
transform-origin: bottom center;
cursor:pointer;
}
/* Hover state for Artemis 2 stats card */
#Artemis-2-Stats:hover{
transform: scale(1.03);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
/* Full-width container for the Artemis 2 crew showcase */
#Artemis-2-Crew-div{
height:1000px;
width:100%;
background-color:#11151C;
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items: center;
justify-content:center;
}
/* Floating header for the crew section with large typography */
.artemis-2-crew-header{
font-family:'Rostex';
color:white;
font-size:5.5rem;
top:20px;
width:100%;
max-width:3000px;
position:absolute;
margin-left:-30px;
margin-top:10px;
text-align:center;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Ensuring the crew division maintains full width */
#Artemis-2-Crew-div{
width:100%;
}
/* Responsive grid layout for the crew member images */
.Artemis-II-Crew-Images-Grid{
display:grid;
grid-auto-flow: row;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap:2px;
width:100%;
}
/* Image styling within the crew grid including hover animations */
.Artemis-II-Crew-Images-Grid img{
width:100%;
max-width:400px;
margin: 0 auto;
display:block;
border-radius:10px;
cursor:pointer;
transition:transform 0.2s ease;
object-fit:cover;
height:300px;
margin-top:-40px;
transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1),
text-shadow 0.25s ease;
}
/* Layout for individual astronaut cards containing name, title, and bio */
.astronautcard{
height:450px;
width:100%;
max-width:450px;
justify-content:right;
text-align:center;
}
/* Interactive wrapper for astronaut card elements */
.cooleffect{
display:grid;
text-decoration:none;
cursor:pointer;
align-items:center;
}
/* Typography and shadows for the astronaut name text */
.Astronaut_Name{
font-family:'Rostex';
font-size:30px;
color:white;
margin-top:15px;
transition: transform 0.25s cubic-bezier(0.25,0.1,0.25,1), filter 0.25s ease;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
/* Typography and shadows for the astronaut title text */
.Astronaut_Title{
font-family:'Rostex';
font-size:30px;
color:white;
margin-top:5px;
transition: transform 0.25s cubic-bezier(0.25,0.1,0.25,1), filter 0.25s ease;
text-shadow:
0 0 5px rgba(0,0,0,0.8),
0 0 10px rgba(0,0,0,0.6),
0 0 20px rgba(0,0,0,0.4),
0 0 30px rgba(0,0,0,0.2),
0 0 40px rgba(0,0,0,0.1);
}
.ralphgamboa{
background: radial-gradient(circle at 20% 50%, rgba(213,85,83,0.08), transparent 50%),
radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05), transparent 40%),
#11151C;
height:1000px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
align-items: center;
justify-content:flex-start;
padding-top:80px;
gap:10px;
}
/* Horizontal line separator with color and expansion transition */
.separatorjr{
width:270px;
margin-left:80px;