afront 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/.babelrc +14 -0
  2. package/.env +2 -0
  3. package/LICENSE +21 -0
  4. package/README.md +72 -0
  5. package/build-prod/favicon.ico +0 -0
  6. package/build-prod/index.html +1 -0
  7. package/build-prod/logo192.png +0 -0
  8. package/build-prod/logo512.png +0 -0
  9. package/build-prod/manifest.json +25 -0
  10. package/build-prod/robots.txt +3 -0
  11. package/build-prod/static/css/3-9b9bcf0b9b877caf80c6.css +1 -0
  12. package/build-prod/static/css/41-1bd05b5a5a70ee2fc084.css +1 -0
  13. package/build-prod/static/css/573-7b8794ea227293d474c9.css +1 -0
  14. package/build-prod/static/css/main-5aff2d8a2fc28d01fdad.css +1 -0
  15. package/build-prod/static/js/3-cde9f071488e7a433907.js +1 -0
  16. package/build-prod/static/js/41-e973a17863e1084774d7.js +1 -0
  17. package/build-prod/static/js/573-21fb9ccdf567d99f4539.js +1 -0
  18. package/build-prod/static/js/main-cc87f2505014acdf4863.js +1 -0
  19. package/build-prod/static/media/52f06bb716d4ecad087a.png +0 -0
  20. package/build-prod/static/media/adeaead125c45715106d.svg +1 -0
  21. package/build-prod/style.css +1 -0
  22. package/build-prod-ssr/3.ssr.prod.js +1 -0
  23. package/build-prod-ssr/41.ssr.prod.js +1 -0
  24. package/build-prod-ssr/573.ssr.prod.js +1 -0
  25. package/build-prod-ssr/ssr.prod.js +1 -0
  26. package/build-prod-ssr/static/css/3-9b9bcf0b9b877caf80c6.css +1 -0
  27. package/build-prod-ssr/static/css/41-1bd05b5a5a70ee2fc084.css +1 -0
  28. package/build-prod-ssr/static/css/573-7b8794ea227293d474c9.css +1 -0
  29. package/build-prod-ssr/static/css/main-5aff2d8a2fc28d01fdad.css +1 -0
  30. package/build-prod-ssr/static/media/52f06bb716d4ecad087a.png +0 -0
  31. package/build-prod-ssr/static/media/adeaead125c45715106d.svg +1 -0
  32. package/build-prod-static/favicon.ico +0 -0
  33. package/build-prod-static/index.html +1 -0
  34. package/build-prod-static/logo192.png +0 -0
  35. package/build-prod-static/logo512.png +0 -0
  36. package/build-prod-static/manifest.json +25 -0
  37. package/build-prod-static/robots.txt +3 -0
  38. package/build-prod-static/static/css/23-1bd05b5a5a70ee2fc084.css +1 -0
  39. package/build-prod-static/static/css/303-9b9bcf0b9b877caf80c6.css +1 -0
  40. package/build-prod-static/static/css/636-7b8794ea227293d474c9.css +1 -0
  41. package/build-prod-static/static/css/main-5aff2d8a2fc28d01fdad.css +1 -0
  42. package/build-prod-static/static/js/23-8e7dbd8910931f545fd9.js +1 -0
  43. package/build-prod-static/static/js/303-1db8abbd7d266bdc27c7.js +1 -0
  44. package/build-prod-static/static/js/636-8a26bc803f853c7ddf82.js +1 -0
  45. package/build-prod-static/static/js/main-709b08b8e9e528bab63c.js +1 -0
  46. package/build-prod-static/static/media/52f06bb716d4ecad087a.png +0 -0
  47. package/build-prod-static/static/media/adeaead125c45715106d.svg +1 -0
  48. package/build-prod-static/style.css +1 -0
  49. package/install.js +91 -0
  50. package/package.json +72 -0
  51. package/server.js +20 -0
  52. package/src/ARoutes/AFRoutes.js +11 -0
  53. package/src/App.js +28 -0
  54. package/src/Assets/images/afront.png +0 -0
  55. package/src/Assets/images/arrow-right.svg +1 -0
  56. package/src/Components/Background/MeshGradient.js +18 -0
  57. package/src/Components/Footer/Footer.js +108 -0
  58. package/src/Components/Header/Header.js +151 -0
  59. package/src/LoadingFallback.js +13 -0
  60. package/src/PageNotFound.js +20 -0
  61. package/src/Pages/Home.js +43 -0
  62. package/src/Pages/Support.js +68 -0
  63. package/src/Routes/ARoutes.js +25 -0
  64. package/src/Static/appStatic.js +26 -0
  65. package/src/Static/indexStatic.js +10 -0
  66. package/src/Style/App.module.css +11 -0
  67. package/src/Style/MeshGradient.module.css +130 -0
  68. package/src/Style/PageNotFound.module.css +37 -0
  69. package/src/Style/Style.module.css +685 -0
  70. package/src/Style/Support.module.css +185 -0
  71. package/src/index.js +29 -0
  72. package/webpack.build-prod.js +110 -0
  73. package/webpack.dev.js +87 -0
  74. package/webpack.prod.js +120 -0
  75. package/webpack.ssr.prod.js +86 -0
@@ -0,0 +1,685 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
2
+
3
+ :root {
4
+ --light: #ffffff;
5
+ --dark: #000;
6
+ --color-white-100: hsl(206, 5%, 100%);
7
+ --color-white-200: hsl(206, 5%, 90%);
8
+ --color-white-300: hsl(206, 5%, 80%);
9
+ --color-white-400: hsl(206, 5%, 65%);
10
+ --color-white-500: hsl(206, 5%, 50%);
11
+ --color-black-100: hsl(213, 20%, 10%);
12
+ --color-black-200: hsl(213, 23%, 8%);
13
+ --color-black-300: hsl(214, 21%, 6%);
14
+ --color-black-400: hsl(210, 21%, 6%);
15
+ --color-black-500: hsl(216, 22%, 4%);
16
+ --color-black-600: hsl(220, 18%, 3%);
17
+ --color-black-700: hsl(220, 27%, 2%);
18
+ --color-black-800: hsl(180, 20%, 1%);
19
+ --color-blue-100: hsl(214, 95%, 93%);
20
+ --color-blue-200: hsl(213, 97%, 87%);
21
+ --color-blue-300: hsl(212, 96%, 78%);
22
+ --color-blue-400: hsl(213, 94%, 68%);
23
+ --color-blue-500: hsl(217, 91%, 60%);
24
+ --color-blue-600: hsl(221, 83%, 53%);
25
+ --color-blue-700: hsl(224, 76%, 48%);
26
+ --color-blue-800: hsl(226, 71%, 40%);
27
+ --color-blue-900: hsl(224, 64%, 33%);
28
+ --tw-ring-offset-shadow: 0 0 #0000;
29
+ --tw-ring-shadow: 0 0 #0000;
30
+ --tw-shadow: 0 16px 32px -16px rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 0, 0, .1);
31
+ --base__color-2__rgb: 32, 32, 32;
32
+ --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
33
+ 0 1px 2px 0 rgba(0, 0, 0, 0.06);
34
+ --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
35
+ 0 2px 4px -1px rgba(0, 0, 0, 0.06);
36
+ --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
37
+ 0 4px 6px -2px rgba(0, 0, 0, 0.05);
38
+ }
39
+
40
+ *,
41
+ *::before,
42
+ *::after {
43
+ padding: 0;
44
+ margin: 0;
45
+ box-sizing: border-box;
46
+ list-style: none;
47
+ list-style-type: none;
48
+ text-decoration: none;
49
+ -webkit-font-smoothing: antialiased;
50
+ -moz-osx-font-smoothing: grayscale;
51
+ text-rendering: optimizeLegibility;
52
+ }
53
+
54
+ html {
55
+ font-size: 100%;
56
+ box-sizing: inherit;
57
+ scroll-behavior: smooth;
58
+ height: -webkit-fill-available;
59
+ }
60
+
61
+ body {
62
+ font-family: "Rubik", sans-serif;
63
+ font-size: clamp(1rem, 2vw, 1.125rem);
64
+ font-weight: 400;
65
+ line-height: 1.5;
66
+ height: -webkit-fill-available;
67
+ min-width: 320px;
68
+ }
69
+
70
+ main {
71
+ overflow: hidden;
72
+ }
73
+
74
+ a,
75
+ button {
76
+ cursor: pointer;
77
+ border: none;
78
+ outline: none;
79
+ user-select: none;
80
+ background: none;
81
+ box-shadow: none;
82
+ text-decoration: none;
83
+ }
84
+
85
+ a {
86
+ color: var(--color-black-400);
87
+ }
88
+
89
+ img,
90
+ video {
91
+ display: block;
92
+ max-width: 100%;
93
+ height: auto;
94
+ object-fit: cover;
95
+ }
96
+
97
+ .section {
98
+ margin: 0 auto;
99
+ padding: 6rem 0 8rem;
100
+ }
101
+
102
+ .container {
103
+ max-width: 75rem;
104
+ height: auto;
105
+ margin: 0 auto;
106
+ /* padding: 0 1.25rem; */
107
+ }
108
+
109
+ .centered {
110
+ text-align: center;
111
+ vertical-align: middle;
112
+ margin-bottom: 1rem;
113
+ }
114
+
115
+ .heading-xl {
116
+ font-family: inherit;
117
+ font-size: clamp(2.648rem, 6vw, 4.241rem);
118
+ font-weight: 700;
119
+ line-height: 1.15;
120
+ letter-spacing: -1px;
121
+ }
122
+
123
+ .heading-lg {
124
+ font-family: inherit;
125
+ font-size: clamp(2.179rem, 5vw, 3.176rem);
126
+ font-weight: 700;
127
+ line-height: 1.15;
128
+ letter-spacing: -1px;
129
+ }
130
+
131
+ .heading-md {
132
+ font-family: inherit;
133
+ font-size: clamp(1.794rem, 4vw, 2.379rem);
134
+ font-weight: 700;
135
+ line-height: 1.25;
136
+ letter-spacing: -1px;
137
+ }
138
+
139
+ .heading-sm {
140
+ font-family: inherit;
141
+ font-size: clamp(1.476rem, 3vw, 1.782rem);
142
+ font-weight: 600;
143
+ line-height: 1.5;
144
+ }
145
+
146
+ .heading-xs {
147
+ font-family: inherit;
148
+ font-size: clamp(1.215rem, 2vw, 1.335rem);
149
+ font-weight: 500;
150
+ line-height: 1.5;
151
+ }
152
+
153
+ .paragraph {
154
+ font-family: inherit;
155
+ font-size: clamp(1rem, 2vw, 1.125rem);
156
+ text-wrap: balance;
157
+ }
158
+
159
+ .btn {
160
+ display: inline-block;
161
+ font-family: inherit;
162
+ font-size: 1rem;
163
+ font-weight: 500;
164
+ line-height: 1.5;
165
+ text-align: center;
166
+ vertical-align: middle;
167
+ white-space: nowrap;
168
+ user-select: none;
169
+ outline: none;
170
+ border: none;
171
+ border-radius: 0.75rem;
172
+ text-transform: unset;
173
+ }
174
+
175
+
176
+
177
+ .btn-inline {
178
+ display: inline-flex;
179
+ align-items: center;
180
+ justify-content: center;
181
+ column-gap: 0.5rem;
182
+ }
183
+
184
+ .btn-darken.menu-block {
185
+ padding: 0.75rem 2rem;
186
+ background-color: var(--color-black-200);
187
+ border-bottom: none;
188
+ line-height: 0;
189
+ height: 2.7rem;
190
+ margin-left: 0;
191
+ display: flex;
192
+ justify-content: center;
193
+ align-items: center;
194
+ }
195
+
196
+ .btn-darken-arrow {
197
+ fill: #ffffff;
198
+ height: 1rem;
199
+ margin-left: 1rem;
200
+ }
201
+
202
+
203
+ .btn-darken.menu-block:hover {
204
+ border-bottom: 2px solid var(--color-blue-600);
205
+ }
206
+
207
+ .btn-neutral {
208
+ padding: 0.75rem 2rem;
209
+ color: var(--color-black-500);
210
+ background-color: var(--color-white-100);
211
+ box-shadow: var(--shadow-medium);
212
+ }
213
+
214
+ .header {
215
+ position: fixed;
216
+ top: 0;
217
+ left: 0;
218
+ z-index: 100;
219
+ width: 100%;
220
+ height: auto;
221
+ margin: 0 auto;
222
+ transition: all 0.3s ease;
223
+ }
224
+
225
+ .header.on-scroll {
226
+ background: var(--light);
227
+ border-bottom: 1px solid var(--color-blue-800);
228
+ box-shadow: var(--shadow-medium);
229
+ background-color: rgba(var(--light), .2);
230
+ -webkit-backdrop-filter: blur(10px);
231
+ backdrop-filter: blur(10px);
232
+ }
233
+
234
+ .off-scroll {
235
+ border-bottom: 1px solid var(--color-blue-800);
236
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
237
+ background-color: rgba(#ffffff, .2);
238
+ -webkit-backdrop-filter: blur(10px);
239
+ backdrop-filter: blur(10px);
240
+ }
241
+
242
+ .navbar {
243
+ display: flex;
244
+ flex-direction: row;
245
+ align-items: center;
246
+ justify-content: flex-start;
247
+ column-gap: 1.25rem;
248
+ width: 100%;
249
+ height: 4.25rem;
250
+ margin: 0 auto;
251
+ }
252
+
253
+ .brand {
254
+ font-family: inherit;
255
+ font-size: 1.6rem;
256
+ font-weight: 600;
257
+ line-height: 1.5;
258
+ letter-spacing: -1px;
259
+ margin-bottom: 0;
260
+ }
261
+
262
+ .navbar.container {
263
+ margin-bottom: 0;
264
+ padding: 0 1.25rem;
265
+ }
266
+
267
+
268
+
269
+ .navbar.container a:hover {
270
+ border-bottom: 2px solid var(--color-black-800);
271
+ }
272
+
273
+
274
+
275
+ .menu-link.menu-link-mobile {
276
+ padding: 0.5rem;
277
+ padding-right: 1.5rem;
278
+ padding-left: 1.5rem;
279
+ }
280
+
281
+ .menu-link.menu-link-mobile:hover {
282
+ border-bottom: none !important;
283
+ background-color: rgba(35, 39, 47, .05);
284
+ border-radius: 3rem;
285
+ }
286
+
287
+ .menu {
288
+ position: fixed;
289
+ top: -100%;
290
+ left: 0;
291
+ width: 100%;
292
+ height: auto;
293
+ background-color: var(--light);
294
+ box-shadow: var(--shadow-medium);
295
+ }
296
+
297
+ .menu.is-active {
298
+ top: 68px;
299
+ width: 100%;
300
+ height: 100vh;
301
+ border-top: 1px solid var(--color-blue-800);
302
+
303
+ }
304
+
305
+ .menu.is-active .menu-inner {
306
+ padding: 1rem;
307
+ gap: 0.2rem;
308
+ border-bottom: 0.75px solid #000000;
309
+ }
310
+
311
+
312
+
313
+ .menu.is-inactive {
314
+ transition: opacity 0.4s ease-in-out;
315
+ opacity: 0;
316
+ visibility: hidden;
317
+ }
318
+
319
+ .menu-inner {
320
+ display: flex;
321
+ overflow-x: auto;
322
+ justify-content: space-around;
323
+ row-gap: 1.25rem;
324
+ -ms-overflow-style: none;
325
+ scrollbar-width: none;
326
+
327
+ }
328
+
329
+ .menu-inner::-webkit-scrollbar {
330
+ display: none;
331
+ }
332
+
333
+ .menu-link {
334
+ font-family: inherit;
335
+ font-size: 1rem;
336
+ font-weight: 500;
337
+ line-height: 1.5;
338
+ text-transform: uppercase;
339
+ margin-bottom: 0;
340
+ }
341
+
342
+ .menu-block {
343
+ display: inline-block;
344
+ font-family: inherit;
345
+ font-size: 0.875rem;
346
+ font-weight: 500;
347
+ line-height: 1.25;
348
+ user-select: none;
349
+ white-space: nowrap;
350
+ text-align: center;
351
+ margin-left: auto;
352
+ padding: 0.65rem 1.5rem;
353
+ border-radius: 0.75rem;
354
+ text-transform: capitalize;
355
+ color: var(--light);
356
+ background-color: var(--color-blue-600);
357
+ box-shadow: var(--shadow-medium);
358
+ margin-bottom: 0;
359
+ }
360
+
361
+ @media only screen and (min-width: 48rem) {
362
+ .menu {
363
+ position: relative;
364
+ top: 0;
365
+ width: auto;
366
+ height: auto;
367
+ padding: 0rem;
368
+ margin-left: auto;
369
+ background: none;
370
+ box-shadow: none;
371
+ transition: none;
372
+ }
373
+
374
+ .menu.is-inactive {
375
+ transition: opacity 0.4s ease-in-out;
376
+ opacity: 1;
377
+ visibility: visible;
378
+ }
379
+
380
+ .menu-inner {
381
+ display: flex;
382
+ flex-direction: row;
383
+ column-gap: 2rem;
384
+ margin: 0 auto;
385
+ }
386
+
387
+ .menu-link {
388
+ text-transform: capitalize;
389
+ }
390
+
391
+ .menu-block {
392
+ margin-left: 2rem;
393
+ }
394
+ }
395
+
396
+ .burger {
397
+ position: relative;
398
+ display: block;
399
+ cursor: pointer;
400
+ user-select: none;
401
+ order: -1;
402
+ z-index: 10;
403
+ width: 1.6rem;
404
+ height: 1.15rem;
405
+ border: none;
406
+ outline: none;
407
+ background: none;
408
+ visibility: visible;
409
+ transform: rotate(0deg);
410
+ transition: 0.35s ease;
411
+ }
412
+
413
+ @media only screen and (min-width: 48rem) {
414
+ .burger {
415
+ display: none;
416
+ visibility: hidden;
417
+ }
418
+ }
419
+
420
+ .burger-line {
421
+ position: absolute;
422
+ display: block;
423
+ left: 0;
424
+ width: 100%;
425
+ height: 2px;
426
+ border: none;
427
+ outline: none;
428
+ opacity: 1;
429
+ border-radius: 1rem;
430
+ transform: rotate(0deg);
431
+ background-color: var(--color-black-800);
432
+ transition: 0.25s ease-in-out;
433
+ }
434
+
435
+ .burger-line:nth-child(1) {
436
+ top: 0px;
437
+ }
438
+
439
+ .burger-line:nth-child(2) {
440
+ top: 0.5rem;
441
+ width: 70%;
442
+ }
443
+
444
+ .burger-line:nth-child(3) {
445
+ top: 1rem;
446
+ }
447
+
448
+ .burger.is-active .burger-line:nth-child(1) {
449
+ top: 0.5rem;
450
+ transform: rotate(135deg);
451
+ }
452
+
453
+ .burger.is-active .burger-line:nth-child(2) {
454
+ opacity: 0;
455
+ visibility: hidden;
456
+ }
457
+
458
+ .burger.is-active .burger-line:nth-child(3) {
459
+ top: 0.5rem;
460
+ transform: rotate(-135deg);
461
+ }
462
+
463
+ .banner-column {
464
+ position: relative;
465
+ display: grid;
466
+ align-items: center;
467
+ row-gap: 3rem;
468
+ padding: 0 1rem;
469
+ }
470
+
471
+ @media only screen and (min-width: 48rem) {
472
+ .banner-column {
473
+ grid-template-columns: repeat(2, minmax(0, 1fr));
474
+ justify-content: center;
475
+ }
476
+ }
477
+
478
+ @media only screen and (min-width: 64rem) {
479
+ .banner-column {
480
+ grid-template-columns: 1fr max-content;
481
+ column-gap: 4rem;
482
+ margin-top: 3rem;
483
+ }
484
+ }
485
+
486
+ @keyframes rotate {
487
+ from {
488
+ transform: rotate(0deg);
489
+ }
490
+
491
+ to {
492
+ transform: rotate(360deg);
493
+ }
494
+ }
495
+
496
+ .banner-image {
497
+ /* animation: rotate 60s linear infinite; */
498
+ display: block;
499
+ max-width: 18rem;
500
+ height: 18rem;
501
+ margin-top: 2rem;
502
+ object-fit: cover;
503
+ justify-self: center;
504
+ /* filter: brightness(0) invert(1); */
505
+ }
506
+
507
+ @media only screen and (min-width: 48rem) {
508
+ .banner-image {
509
+ order: 1;
510
+ max-width: 20rem;
511
+ height: 20rem;
512
+ }
513
+ }
514
+
515
+ @media only screen and (min-width: 64rem) {
516
+ .banner-image {
517
+ max-width: 25rem;
518
+ height: 25rem;
519
+ margin-right: 1rem;
520
+ }
521
+ }
522
+
523
+ .banner-inner {
524
+ display: flex;
525
+ flex-direction: column;
526
+ align-items: flex-start;
527
+ row-gap: 1.75rem;
528
+ }
529
+
530
+ /* Footer */
531
+ .footer {
532
+ position: relative;
533
+ background-color: #fff;
534
+ color: #333;
535
+ padding: 2.5rem 0;
536
+ overflow: hidden;
537
+ }
538
+
539
+ /* Background text */
540
+ .footer::before {
541
+ content: "AFront";
542
+ position: absolute;
543
+ top: 70%;
544
+ left: 50%;
545
+ transform: translate(-50%, -50%);
546
+ font-size: 20rem;
547
+ color: rgba(0, 0, 0, 0.05);
548
+ white-space: nowrap;
549
+ pointer-events: none;
550
+ z-index: 0;
551
+ }
552
+
553
+ .footerContainer {
554
+ position: relative;
555
+ display: flex;
556
+ justify-content: space-between;
557
+ align-items: flex-start;
558
+ max-width: 75rem;
559
+ margin: 0 auto;
560
+ padding: 0 1.25rem;
561
+ flex-wrap: wrap;
562
+ z-index: 1;
563
+ /* Ensures content is above the background text */
564
+ }
565
+
566
+ .footerBrand {
567
+ flex: 1;
568
+ margin-bottom: 2rem;
569
+ }
570
+
571
+ .footerLogo {
572
+ font-size: 1.5rem;
573
+ font-weight: bold;
574
+ color: var(--color-black-400);
575
+ text-decoration: none;
576
+ }
577
+
578
+ .footerDescription {
579
+ margin-top: 0.625rem;
580
+ font-size: 0.875rem;
581
+ color: #8b8b8b;
582
+ }
583
+
584
+ .footerLinks {
585
+ flex: 2;
586
+ display: flex;
587
+ justify-content: space-between;
588
+ flex-wrap: wrap;
589
+ }
590
+
591
+ .linkColumn {
592
+ flex: 1;
593
+ min-width: 12rem;
594
+ margin-bottom: 2rem;
595
+ }
596
+
597
+ .footerTitle {
598
+ font-size: 1rem;
599
+ margin-bottom: 0.625rem;
600
+ color: #777777;
601
+ }
602
+
603
+ .linkList {
604
+ list-style: none;
605
+ padding: 0;
606
+ }
607
+
608
+ .link {
609
+ color: #909090;
610
+ text-decoration: none;
611
+ font-size: 0.875rem;
612
+ margin-bottom: 0.5rem;
613
+ display: block;
614
+ transition: color 0.3s ease;
615
+ }
616
+
617
+ .link:hover {
618
+ color: #3a3a3a;
619
+ }
620
+
621
+ .footerBottom {
622
+ text-align: center;
623
+ margin-top: 2.5rem;
624
+ font-size: 0.875rem;
625
+ color: #777;
626
+ }
627
+
628
+ .footerCopy {
629
+ margin-bottom: 0.625rem;
630
+ }
631
+
632
+ .socialLinks {
633
+ display: flex;
634
+ justify-content: center;
635
+ flex-wrap: wrap;
636
+ }
637
+
638
+ .socialLink {
639
+ color: #909090;
640
+ text-decoration: none;
641
+ margin: 0 0.625rem;
642
+ font-size: 1.125rem;
643
+ transition: color 0.3s ease;
644
+ }
645
+
646
+ .socialLink:hover {
647
+ color: #3a3a3a;
648
+ }
649
+
650
+ /* Mobile Responsiveness */
651
+ @media (max-width: 768px) {
652
+ .footerContainer {
653
+ flex-direction: column;
654
+ align-items: center;
655
+ }
656
+
657
+ .footerLinks {
658
+ flex-direction: column;
659
+ align-items: center;
660
+ text-align: center;
661
+ }
662
+
663
+ .linkColumn {
664
+ margin-bottom: 1.5rem;
665
+ }
666
+
667
+ .footerCopy {
668
+ font-size: 0.75rem;
669
+ }
670
+
671
+ .socialLinks {
672
+ margin-top: 1rem;
673
+ }
674
+
675
+ .socialLink {
676
+ font-size: 1rem;
677
+ margin: 0 0.5rem;
678
+ }
679
+
680
+ .footer::before {
681
+ content: "AFront";
682
+ font-size: 5rem;
683
+ top: 82%;
684
+ }
685
+ }