-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1537 lines (1358 loc) · 56 KB
/
index.html
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">
<meta name="description" content="A personal and business portfolio showcasing the projects and services of Amy Finch (Finchy), a Developer, Environment Artist, Entrepreneur, Nerd, and Gamer.">
<meta name="keywords" content="Finchy, Developer, Environment Artist, Entrepreneur, Nerd, Gamer, Portfolio, Business, Personal, Media Void, Finch Studio, Amazon Lumberyard, O3DE, Skynet Bot">
<meta name="author" content="Finchy">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Finchy's Portfolio">
<meta property="og:description" content="Discover the projects and services Amy Finch (Finchy) has contributed to, from game development with Amazon Lumberyard and O3DE, to her entrepreneurial ventures with Finch Studio and Media Void.">
<meta property="og:image" content="">
<meta property="og:url" content="https://FinchStudio.ca">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="">
<meta name="twitter:title" content="Finchy's Portfolio">
<meta name="twitter:description" content="Discover the projects and services Amy Finch (Finchy) has contributed to.">
<meta name="twitter:image" content="">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<title>Amy's Portfolio</title>
</head>
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #03090d; /* Dark blue background for the page */
}
/* Navigation Styles */
#afinchy-nav-container {
background-color: #051522; /* Slightly lighter shade */
padding: 10px 0;
}
#afinchy-site-navigation {
display: flex;
justify-content: space-between; /* Ensures items are spaced out properly */
align-items: center;
width: 100%;
}
.nav-brand {
color: white;
font-size: 24px;
padding: 0 30px; /* Adjust padding if necessary */
display: block;
text-align: center;
white-space: nowrap; /* Prevents text from wrapping */
}
#menu-afinchy-navigation {
list-style-type: none;
display: flex;
justify-content: center;
gap: 10px; /* Closer spacing between menu items */
width: 100%;
}
#menu-afinchy-navigation li a {
color: white;
text-decoration: none;
display: block;
padding: 5px 10px;
transition: background-color 0.3s ease;
}
#menu-afinchy-navigation li a:hover,
#menu-afinchy-navigation li.active a {
background-color: #0d1f33; /* Even lighter shade for hover */
border-radius: 5px;
}
.dropdown {
display: none;
position: absolute;
background-color: #051522; /* Darker shade of base color */
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
width: auto; /* Prevent full width */
border-radius: 5px;
padding: 10px 0;
z-index: 1000;
top: 100%; /* Ensures it starts right after the nav item */
}
#menu-afinchy-navigation li:hover .dropdown {
display: block;
}
.dropdown li a {
padding: 10px 20px;
color: white;
text-decoration: none;
}
.dropdown li a:hover {
background-color: #555;
}
/* Social Icons Styles */
.social-icons {
display: flex;
margin-left: auto; /* Right aligning social icons */
padding-right: 15px;
}
.social-icons a {
color: white;
font-size: 1.5em;
margin-left: 10px;
}
/* Mobile Specific Styles */
#menu-toggle {
display: none;
color: white;
font-size: 30px;
cursor: pointer;
position: absolute;
right: 10px;
top: 10px;
z-index: 1050;
}
@media (max-width: 940px) {
#menu-toggle {
display: block;
}
#menu-toggle:before {
content: '\2630'; /* Default to Hamburger icon */
display: block;
transition: transform 0.3s ease; /* Smooth transition for icon */
}
#menu-toggle.open:before {
content: '\2715'; /* X icon for open state */
}
#menu-afinchy-navigation {
display: none;
flex-direction: column;
background-color: #051522;
position: absolute;
top: 60px;
right: 0;
width: 250px;
padding: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
z-index: 1040;
transition: all 0.3s ease-in-out; /* Smooth transition for dropdown */
}
#menu-afinchy-navigation.show {
display: flex;
}
.nav-brand {
width: 100%; /* Center brand name on mobile */
text-align: center;
}
.social-icons {
display: block; /* Ensure visibility on mobile */
position: absolute;
left: 10px;
top: 10px;
}
}
/* About Me Page Styles */
#about-me-page #page-title-overlay-image {
background-image: url('./about.jpg'); /* High-resolution farm image */
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
width: 100%;
height: 300px; /* Fixed height */
z-index: 1;
}
#about-me-page #page-title-pro {
position: relative;
width: 100%;
height: 360px;
}
#about-me-page #page-title-pro::before {
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #03090d 100%);
position: absolute;
top: 0;
left: 0;
content: "";
display: block;
width: 100%;
height: 300px;
z-index: 2; /* Overlay on top of the background image */
}
#about-me-page #page-title-pro h1 {
position: absolute;
top: 60%; /* Adjusted vertically for better visibility */
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 3;
font-size: 32px; /* Increased size for better readability */
}
#about-me-page #about-text {
text-align: center;
padding: 20px 15%; /* Increased side padding on wider screens */
color: white;
font-size: 20px; /* Increased text size for better readability */
line-height: 1.6;
max-width: 1200px; /* Maximum width set to ensure content is well-contained */
margin: 0 auto; /* Centering content within the page */
}
@media (min-width: 1024px) {
#about-me-page #about-text {
padding: 20px 50px; /* Further increased side padding on very wide screens */
}
}
/* Volunteer Page Styles */
#volunteer-page #volunteer-page-title-overlay-image {
background-image: url('./volunteer.jpg'); /* High-resolution image */
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
width: 100%;
height: 300px; /* Fixed height */
z-index: 1;
}
#volunteer-page #volunteer-page-title-pro {
position: relative;
width: 100%;
height: 360px;
}
#volunteer-page #volunteer-page-title-pro::before {
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #03090d 100%);
position: absolute;
top: 0;
left: 0;
content: "";
display: block;
width: 100%;
height: 300px;
z-index: 2; /* Overlay on top of the background image */
}
#volunteer-page #volunteer-page-title-pro h1 {
position: absolute;
top: 60%; /* Adjusted vertically for better visibility */
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 3;
font-size: 32px; /* Increased size for better readability */
}
#volunteer-page #volunteer-text {
text-align: center;
padding: 20px 15%; /* Increased side padding on wider screens */
color: white;
font-size: 20px; /* Increased text size for better readability */
line-height: 1.6;
max-width: 1200px; /* Maximum width set to ensure content is well-contained */
margin: 0 auto; /* Centering content within the page */
}
@media (min-width: 1024px) {
#volunteer-page #volunteer-text {
padding: 20px 50px; /* Further increased side padding on very wide screens */
}
}
/* Work Page Styles */
#work-page #work-page-title-overlay-image {
background-image: url('./work.jpg');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
width: 100%;
height: 300px; /* Fixed height */
z-index: 1;
}
#work-page #work-page-title-pro {
position: relative;
width: 100%;
height: 360px;
}
#work-text {
text-align: center;
padding: 20px 15%; /* Increased side padding on wider screens */
color: white;
font-size: 20px; /* Increased text size for better readability */
line-height: 1.6;
max-width: 1200px; /* Maximum width set to ensure content is well-contained */
margin: 0 auto; /* Centering content within the page */
}
#work-text a {
color: #4A90E2; /* Example: a bright blue color for better visibility */
text-decoration: underline; /* Underlines the link to make it more noticeable */
}
#work-page #work-page-title-pro::before {
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #03090d 100%);
position: absolute;
top: 0;
left: 0;
content: "";
display: block;
width: 100%;
height: 300px;
z-index: 2; /* Overlay on top of the background image */
}
#work-page #work-page-title-pro h1 {
position: absolute;
top: 60%; /* Adjusted vertically for better visibility */
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 3;
font-size: 32px; /* Increased size for better readability */
}
#work-container {
max-width: 1200px;
margin: 40px auto;
padding: 20px;
color: #eee; /* Light text color for readability */
}
.work-item {
background-color: #041521; /* Darker background for each item */
margin-bottom: 30px;
padding: 20px;
border-radius: 8px;
}
.work-item h2 {
color: #ccc;
}
.work-meta {
font-style: italic;
color: #888;
margin-bottom: 15px;
}
.work-description {
margin-bottom: 20px;
text-align: left;
color: #ddd; /* Slightly lighter text for descriptions */
}
.skills-list {
list-style: none;
padding: 0;
text-align: center;
}
.skills-list li {
display: inline-block;
background: #062736; /* Slightly lighter background for tags */
color: #fff;
padding: 5px 15px;
margin: 2px;
border-radius: 4px;
font-size: 14px;
}
@media (min-width: 1024px) {
#work-container {
padding: 20px 50px;
}
}
/* Projects Page Styles */
#projects-page #projects-page-title-overlay-image {
background-image: url('./projects.png');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
width: 100%;
height: 300px;
z-index: 1;
}
#projects-page #projects-page-title-pro {
position: relative;
width: 100%;
height: 250px;
}
#projects-page #projects-page-title-pro::before {
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #03090d 100%);
position: absolute;
top: 0;
left: 0;
content: "";
display: block;
width: 100%;
height: 300px;
z-index: 2; /* Overlay on top of the background image */
}
#projects-page #projects-page-title-pro h1 {
position: absolute;
top: 60%; /* Adjusted vertically for better visibility */
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 3;
font-size: 32px; /* Increased size for better readability */
}
#projects-page #projects-text {
text-align: center;
padding: 20px 15%; /* Increased side padding on wider screens */
color: white;
font-size: 20px; /* Increased text size for better readability */
line-height: 1.6;
max-width: 1200px; /* Maximum width set to ensure content is well-contained */
margin: 0 auto; /* Centering content within the page */
}
@media (min-width: 1024px) {
#projects-page #projects-text {
padding: 20px 50px; /* Further increased side padding on very wide screens */
}
}
/* Project Cards Styling */
.project {
background: #03090d; /* Dark background for project cards */
padding: 30px;
margin: 20px auto;
border-radius: 8px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
text-align: center; /* Center align text for consistency */
max-width: 800px; /* Restrict maximum width for better layout */
}
.project img {
max-height: 80px; /* Standardize image sizes */
width: auto;
margin-bottom: 20px; /* Space below images */
}
.project h3 {
font-size: 24px;
color: #4A90E2;
margin-bottom: 10px;
}
.project p {
font-size: 16px;
color: #ccc;
line-height: 1.5;
}
.btn {
background-color: #4A90E2;
color: white;
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
display: inline-block;
margin-top: 10px;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
background-color: #367ABD;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
/* Introduction Text Styling for Projects Page */
#projects-page .intro-text {
color: #fff; /* White text color for contrast */
padding: 30px; /* Adequate padding for readability */
border-radius: 8px; /* Rounded corners for a softer look */
margin: 20px auto 40px; /* Reduced top margin to move the block up */
box-shadow: 0 4px 8px rgba(0,0,0,0.5); /* Subtle shadow for depth */
text-align: center; /* Center-align the text for focus */
font-size: 18px; /* Comfortable reading size */
line-height: 1.6; /* Optimal line height for readability */
max-width: 800px; /* Max width to maintain line length */
}
@media (min-width: 768px) {
#projects-page .intro-text {
font-size: 20px; /* Slightly larger text on larger screens */
}
}
/* General Page Styling */
#home-page {
color: #fff;
font-family: Arial, sans-serif;
margin: 0; /* Ensure it's flush with the top and sides */
padding: 0; /* Remove padding to allow full width slider */
overflow: hidden; /* Prevents any horizontal overflow */
}
/* Resets padding inside main content only */
.main-content {
padding: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-radius: 8px;
background: #03090d; /* Dark background for better theme integration */
}
/* Main content section - Restricts to max-width */
.main-content {
max-width: 1200px;
margin: 0 auto; /* Centers the content section */
}
/* Image Slider - Full viewport width */
#home-page #image-slider {
position: relative;
width: 100vw; /* Sets width to full viewport width */
left: calc(-50vw + 50%); /* Centering the slider */
margin-top: 0; /* Ensures it's flush with any nav or top of the page */
height: 300px; /* Fixed height for consistency */
overflow: hidden; /* Ensures nothing spills outside the slider area */
}
#home-page .slide {
position: absolute;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1s ease-in-out;
}
#home-page .slide.active {
opacity: 1; /* Only the active slide is visible */
}
#home-page .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, #03090d 100%);
z-index: 2;
}
#home-page .overlay-text {
position: absolute;
bottom: 30px;
left: 50px;
right: 50px; /* Provides padding from the edges */
text-align: center;
color: white;
z-index: 3;
font-size: 18px; /* Adjust font size for better readability */
}
/* Text and Project Section Styling */
#home-page .main-content .intro-text, .project-section, .cta {
text-align: center;
padding: 20px;
margin: 20px auto; /* Auto margins for horizontal centering */
}
#home-page .project {
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
background: #03090d; /* Dark background for project cards */
}
/* Buttons Styling for Better Visibility and Interaction */
#home-page .btn {
background-color: #4A90E2;
color: white;
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
display: inline-block;
margin-top: 10px;
}
#home-page .btn:hover {
background-color: #367ABD;
}
/* Specific Adjustments for Images */
#media-void img {
max-height: 80px; /* Specific height without additional styling */
width: auto; /* Maintain aspect ratio */
}
#skynet-bot img, #nzbflix img {
max-height: 80px; /* Ensure both logos are the same size */
width: auto; /* Maintain aspect ratio */
border-radius: 50%; /* Circular images for Skynet and nzbFLIX logos */
box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
#home-page img:hover {
transform: scale(1.05);
}
/* Typography Enhancements */
#home-page h3 {
font-size: 24px;
color: #4A90E2;
font-weight: bold;
margin-bottom: 10px;
}
#home-page p {
font-size: 16px;
line-height: 1.5;
color: #ccc; /* Light gray text for better visibility on dark background */
}
#home-page .overlay-text h2 {
font-size: 36px;
font-weight: bold;
}
#home-page .overlay-text p {
font-size: 20px;
}
/* Button Aesthetics */
#home-page .btn {
font-weight: bold;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* Layout Adjustments */
#home-page .project {
background: #03090d;
padding: 30px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
margin-bottom: 40px;
}
#home-page .project-section {
padding: 40px 20px;
}
/* Specific Adjustments for Images */
#media-void img {
max-height: 80px; /* Limiting height for the Media Void logo */
}
#skynet-bot img, #nzbflix img {
max-height: 80px; /* Ensure both logos are the same size */
width: auto; /* Maintain aspect ratio */
border-radius: 50%; /* Circular images for Skynet and nzbFLIX logos */
}
/* Awards Page Styles */
#awards-page #awards-page-title-overlay-image {
background-image: url('./awards.jpeg'); /* High-resolution image */
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
width: 100%;
height: 300px; /* Fixed height */
z-index: 1;
}
#awards-page #awards-page-title-pro {
position: relative;
width: 100%;
height: 360px;
}
#awards-page #awards-page-title-pro::before {
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #03090d 100%);
position: absolute;
top: 0;
left: 0;
content: "";
display: block;
width: 100%;
height: 300px;
z-index: 2; /* Overlay on top of the background image */
}
#awards-page #awards-page-title-pro h1 {
position: absolute;
top: 60%; /* Adjusted vertically for better visibility */
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 3;
font-size: 32px; /* Increased size for better readability */
}
#awards-page #awards-text {
text-align: center;
padding: 20px 15%; /* Increased side padding on wider screens */
color: white;
font-size: 20px; /* Increased text size for better readability */
line-height: 1.6;
max-width: 1200px; /* Maximum width set to ensure content is well-contained */
margin: 0 auto; /* Centering content within the page */
}
#awards-page #awards-container {
max-width: 1200px;
margin: 40px auto;
padding: 20px;
color: #eee; /* Light text color for readability */
}
.award-item {
background-color: #041521; /* Darker background for each item */
margin-bottom: 30px;
padding: 20px;
border-radius: 8px;
}
.award-item h2 {
color: #ccc;
}
.award-meta {
font-style: italic;
color: #888;
margin-bottom: 15px;
}
.award-description {
margin-bottom: 20px;
text-align: left;
color: #ddd; /* Slightly lighter text for descriptions */
}
.skills-list {
list-style: none;
padding: 0;
text-align: center;
}
.skills-list li {
display: inline-block;
background: #062736; /* Slightly lighter background for tags */
color: #fff;
padding: 5px 15px;
margin: 2px;
border-radius: 4px;
font-size: 14px;
}
@media (min-width: 1024px) {
#awards-page #awards-text {
padding: 20px 50px;
}
}
/* Communities Page Styles */
#communities-page #communities-page-title-overlay-image {
background-image: url('./volunteer.jpg'); /* High-resolution image */
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
width: 100%;
height: 300px; /* Fixed height */
z-index: 1;
}
#communities-page #communities-page-title-pro {
position: relative;
width: 100%;
height: 360px;
}
#communities-page #communities-page-title-pro::before {
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #03090d 100%);
position: absolute;
top: 0;
left: 0;
content: "";
display: block;
width: 100%;
height: 300px;
z-index: 2; /* Overlay on top of the background image */
}
#communities-page #communities-page-title-pro h1 {
position: absolute;
top: 60%; /* Adjusted vertically for better visibility */
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 3;
font-size: 32px; /* Increased size for better readability */
}
#communities-page #communities-text {
text-align: center;
padding: 20px 15%; /* Increased side padding on wider screens */
color: white;
font-size: 20px; /* Increased text size for better readability */
line-height: 1.6;
max-width: 1200px; /* Maximum width set to ensure content is well-contained */
margin: 0 auto; /* Centering content within the page */
}
@media (min-width: 1024px) {
#communities-page #communities-text {
padding: 20px 50px; /* Further increased side padding on very wide screens */
}
}
/* Contact Page Styles */
#contact-page #contact-page-title-overlay-image {
background-image: url('./contact.jpg'); /* Adjust if a different image is desired */
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
width: 100%;
height: 300px; /* Fixed height */
z-index: 1;
}
#contact-page #contact-page-title-pro {
position: relative;
width: 100%;
height: 360px;
}
#contact-page #contact-page-title-pro::before {
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #03090d 100%);
position: absolute;
top: 0;
left: 0;
content: "";
display: block;
width: 100%;
height: 300px;
z-index: 2; /* Overlay on top of the background image */
}
#contact-page #contact-page-title-pro h1 {
position: absolute;
top: 60%; /* Adjusted vertically for better visibility */
left: 50%;
transform: translate(-50%, -50%);
color: white;
z-index: 3;
font-size: 32px; /* Increased size for better readability */
}
#contact-page #contact-text {
text-align: center;
padding: 20px 15%; /* Increased side padding on wider screens */
color: white;
font-size: 20px; /* Increased text size for better readability */
line-height: 1.6;
max-width: 1200px; /* Maximum width set to ensure content is well-contained */
margin: 0 auto; /* Centering content within the page */
}
.contact-container {
background: #041521; /* Dark background for contact link container */
padding: 20px;
border-radius: 8px;
margin: 20px auto;
max-width: 600px; /* More uniform and less wide */
}
.contact-link, .contact-info {
display: block;
margin: 10px 0;
color: white; /* Ensures visibility against the dark container background */
font-weight: bold;
font-size: 18px;
text-decoration: none;
}
.contact-link i, .contact-info i {
color: white; /* Icon color */
margin-right: 10px;
}
.contact-link:hover, .discord-button:hover {
text-decoration: underline;
}
.discord-button {
display: inline-block;
background-color: #7289DA; /* Discord brand color */
color: white;
padding: 10px 15px;
border-radius: 4px;
text-decoration: none;
font-weight: bold;
margin-top: 10px;
}
@media (min-width: 1024px) {
#contact-page #contact-text {
padding: 20px 50px; /* Further increased side padding on very wide screens */
}
}
/* footer Styles */
.site-footer {
background-color: #051522;
color: white;
padding: 20px;
font-size: 16px;
}
.footer-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}
.footer-section {
margin: 20px;
flex: 1 1 200px; /* Flexible but with a minimum width */
}
.footer-section h4 {
margin-bottom: 15px;
}
.footer-section ul {
list-style: none;
padding: 0;
line-height: 1.8; /* Increased line height for better readability */
}
.footer-section ul li a {
color: white;
text-decoration: none;
transition: color 0.3s ease, background-color 0.3s ease;
}
.footer-section ul li a:hover {
color: #051522; /* Dark background color */
background-color: #ffffff; /* White text */
padding: 2px 5px; /* Optional padding for a "button-like" effect */
border-radius: 5px; /* Rounded corners for aesthetic */
}
.social-icons {
display: flex; /* Change from inline-block to flex to better manage spacing */
align-items: center; /* Align icons vertically */
margin-left: auto; /* Push to the right on larger screens */
padding-right: 15px; /* Spacing on the right */
}
.social-icons a {
color: white;
margin-right: 10px; /* Right margin for spacing between icons */
font-size: 20px; /* Icon size */
transition: color 0.3s ease; /* Smooth transition for hover effect */
}
.social-icons a:hover {
color: #0d1f33; /* Darken color on hover */
}
.footer-bottom {
text-align: center;