forked from synthax-tech/synthax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
1170 lines (1011 loc) · 25.3 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
body{background:black;
color: #fff;
font-family: 'Poppins', sans-serif;}
:root {
--primary-color: mediumslateblue;
}
* {
box-sizing: border-box;
}
h1, h2, h3, p {
margin: 0;
font-family: 'Poppins', sans-serif;
}
/* navigation */
.navbar {
background-color: black;/* Adjust the alpha value as needed for transparency */
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px;
position: sticky;
top: 0; /* Stick to the top of the viewport */
z-index: 10; /* Ensure it appears above other content */
}
.navbar a {
color: white;
text-decoration: none;
padding: 10px 16px;
font-size: 25px;
}
.navbar a.logo {
font-size: 30px;
font-weight: bold;
}
.center-links {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
}
.center-links a {
padding: 10px 16px;
}
.navbar a.button,
a::after {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background: #00FFFF;
border-radius: 5px;
border: 0;
color: #101916;
letter-spacing: 1.8px;
line-height: 1.25em;
position: relative;
text-transform: uppercase;
}
/* Apply special effects to all navbar links except the "Join Us" button */
.navbar a:not(.button) {
position: relative;
color: white;
text-decoration: none;
padding: 10px 16px;
font-size: 25px;
overflow: hidden;
transition: color 0.3s ease-in-out;
}
/* Add a glowing underline effect */
.navbar a:not(.button)::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary-color);
transition: width 0.3s ease-in-out;
}
/* On hover, change text color and expand the underline */
.navbar a:not(.button):hover {
color: var(--primary-color);
}
.navbar a:not(.button):hover::before {
width: 100%;
}
.navbar a.button::after {
width: 100%;
height: 100%;
--slice-0: inset(50% 50% 50% 50%);
--slice-1: inset(80% -6px 0 0);
--slice-2: inset(50% -6px 30% 0);
--slice-3: inset(10% -6px 85% 0);
--slice-4: inset(40% -6px 43% 0);
--slice-5: inset(80% -6px 5% 0);
content: "Join us";
display: flex;
position: absolute;
left: 0;
top: 0;
background: linear-gradient(135deg, #7b68ee 95%, #000 5%);
text-shadow: -3px -3px 0 #000, 3px 3px 0 #ff0;
clip-path: var(--slice-0);
}
.navbar a.button:hover::after {
animation: glitch 1s;
animation-timing-function: steps(2, end);
}
@keyframes glitch {
0% {
clip-path: var(--slice-1);
transform: translate(-20px, -10px);
}
10% {
clip-path: var(--slice-3);
transform: translate(10px, 10px);
}
20% {
clip-path: var(--slice-1);
transform: translate(-10px, 10px);
}
30% {
clip-path: var(--slice-3);
transform: translate(0px, 5px);
}
40% {
clip-path: var(--slice-2);
transform: translate(-5px, 0px);
}
50% {
clip-path: var(--slice-3);
transform: translate(5px, 0px);
}
60% {
clip-path: var(--slice-4);
transform: translate(5px, 10px);
}
70% {
clip-path: var(--slice-2);
transform: translate(-10px, 10px);
}
80% {
clip-path: var(--slice-5);
transform: translate(20px, -10px);
}
90% {
clip-path: var(--slice-1);
transform: translate(-10px, 0px);
}
100% {
clip-path: var(--slice-1);
transform: translate(0);
}
}
/* Hero section styles */
.a {
/* background: url("https://s6.gifyu.com/images/S8jUM.gif") no-repeat;
background-size: cover;*/
width: 100%;
height: 100vh;
z-index: -1;
margin-bottom: -161px;
}
/* Section Styling */
.preview-section {
text-align: center;
padding: 50px 20px;
background-color: #000000;
}
.preview-title {
font-size: 2rem;
margin-bottom: 30px;
color: #ffffff;
}
/* Container for Preview Blocks */
.preview-container {
display: flex; /* Use flexbox for side-by-side layout */
justify-content: center; /* Centers the items horizontally */
align-items: center; /* Vertically aligns items */
gap: 20px; /* Space between items */
margin-top: 20px; /* Adjust space above the container if needed */
flex-wrap: wrap; /* Ensures items wrap on smaller screens */
}
/* Preview Block Styles */
.preview-block {
width: 208px; /* Set fixed width for consistency */
height: 158px; /* Set fixed height for consistent blocks */
overflow: hidden;
border-radius: 10px;
position: relative; /* Necessary for overlay positioning */
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
}
/* Cool Hover Effects */
.preview-block:hover {
transform: scale(1.1) rotate(5deg); /* Slight zoom and rotation effect */
box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.4); /* Stronger shadow to lift the element */
background-color: #333; /* Darkens the background slightly for a more dynamic look */
}
/* Image Inside the Preview Block */
.bento-image {
width: 100%; /* Makes sure image fills the container */
height: 100%;
object-fit: cover; /* Ensures image maintains aspect ratio */
border-radius: 10px; /* Keeps the rounded corners */
transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for zoom and color shift */
}
.preview-block:hover .bento-image {
transform: scale(1.1); /* Apply zoom effect directly to the image */
filter: brightness(0.8) contrast(1.2); /* Slightly darken and increase contrast */
}
/* Overlay Effect */
.bento-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
color: white;
text-align: center;
transition: opacity 0.3s ease;
border-radius: 10px;
}
.preview-block:hover .bento-overlay {
opacity: 1;
}
/* Content Inside the Preview Block */
.preview-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
padding: 20px;
text-align: center;
color: #fff;
}
.preview-content h2 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.preview-content p {
font-size: 1rem;
opacity: 0.85;
}
/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
.preview-container {
gap: 10px; /* Smaller gap between items on smaller screens */
flex-direction: column; /* Stacks items vertically on smaller screens */
}
.preview-block {
width: 100%; /* Ensures full width for each item */
height: auto; /* Adjust height based on content */
}
}
.glitch {
font-family: 'nt_yakione', sans-serif;
text-transform: uppercase;
font-size: 11vw;
text-align: center;
margin: 0;
top: 38%;
left: 50%;
transform: translate(-50%, -50%);
position: absolute;
color: #fff;
word-wrap: nowrap;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
white-space: nowrap;
}
.glitch:before {
content: attr(data-text);
position: absolute;
overflow: hidden;
left: 0;
color: #000;
font-family: 'nt_yakitwo';
transform: translateY(4%);
text-shadow: 1px -1px 0 #00FFFF, 1px -1px 0 #00FFFF, -1px 1px 0 #00FFFF, 1px 1px 0 #00FFFF, 2px -2px 0 #00FFFF, 2px -2px 0 #00FFFF, -2px 2px 0 #00FFFF, 2px 2px 0 #00FFFF;
}
.glitch:before,
.glitch:after {
content: attr(data-text);
position: absolute;
top: 0;
width: 100%;
color: 50px; /* Check if this value is intended */
background-color: #000000;
overflow: hidden;
clip: rect(auto, auto, auto, auto);
}
.glitch:before {
left: -2px;
animation: noise-before 4s infinite linear alternate-reverse;
}
.glitch:after {
left: 2px;
animation: noise-after 3s infinite linear alternate-reverse;
}
p.subtext {
text-align: center;
margin-top: 10px; /* Adjust as needed */
font-size: 2.5em; /* Adjust the size relative to h1 */
position: absolute;
top: 60%; /* Adjust the percentage as needed */
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
color:white;
text-transform: uppercase;
}
@keyframes noise-before {
0% {
clip: rect(61px, 9999px, 52px, 0);
}
5% {
clip: rect(33px, 9999px, 144px, 0);
}
10% {
clip: rect(121px, 9999px, 115px, 0);
}
15% {
clip: rect(144px, 9999px, 162px, 0);
}
20% {
clip: rect(62px, 9999px, 180px, 0);
}
25% {
clip: rect(34px, 9999px, 42px, 0);
}
30% {
clip: rect(147px, 9999px, 179px, 0);
}
35% {
clip: rect(99px, 9999px, 63px, 0);
}
40% {
clip: rect(188px, 9999px, 122px, 0);
}
45% {
clip: rect(154px, 9999px, 14px, 0);
}
50% {
clip: rect(63px, 9999px, 37px, 0);
}
55% {
clip: rect(161px, 9999px, 147px, 0);
}
60% {
clip: rect(109px, 9999px, 175px, 0);
}
65% {
clip: rect(157px, 9999px, 88px, 0);
}
70% {
clip: rect(173px, 9999px, 131px, 0);
}
75% {
clip: rect(62px, 9999px, 70px, 0);
}
80% {
clip: rect(24px, 9999px, 153px, 0);
}
85% {
clip: rect(138px, 9999px, 40px, 0);
}
90% {
clip: rect(79px, 9999px, 136px, 0);
}
95% {
clip: rect(25px, 9999px, 34px, 0);
}
100% {
clip: rect(173px, 9999px, 166px, 0);
}
}
@keyframes noise-after {
0% {
clip: rect(26px, 9999px, 33px, 0);
}
5% {
clip: rect(140px, 9999px, 198px, 0);
}
10% {
clip: rect(184px, 9999px, 89px, 0);
}
15% {
clip: rect(121px, 9999px, 6px, 0);
}
20% {
clip: rect(181px, 9999px, 99px, 0);
}
25% {
clip: rect(154px, 9999px, 133px, 0);
}
30% {
clip: rect(134px, 9999px, 169px, 0);
}
35% {
clip: rect(26px, 9999px, 187px, 0);
}
40% {
clip: rect(147px, 9999px, 137px, 0);
}
45% {
clip: rect(31px, 9999px, 52px, 0);
}
50% {
clip: rect(191px, 9999px, 109px, 0);
}
55% {
clip: rect(74px, 9999px, 54px, 0);
}
60% {
clip: rect(145px, 9999px, 75px, 0);
}
65% {
clip: rect(153px, 9999px, 198px, 0);
}
70% {
clip: rect(99px, 9999px, 136px, 0);
}
75% {
clip: rect(118px, 9999px, 192px, 0);
}
80% {
clip: rect(1px, 9999px, 83px, 0);
}
85% {
clip: rect(145px, 9999px, 98px, 0);
}
90% {
clip: rect(121px, 9999px, 154px, 0);
}
95% {
clip: rect(156px, 9999px, 44px, 0);
}
100% {
clip: rect(67px, 9999px, 122px, 0);
}
}
h2::before {
content: none;
}
.glitch-wrapper h2 {
position: absolute;
top: 53%; /* Adjust the distance from glitched text as needed also this for soon html */
left: 50%;
transform: translateX(-50%);
color: white;
text-align: center;
font-size: 2rem;
white-space: nowrap;
}
ul#countdown {
position: absolute;
top: 64%; /* Adjust the distance from glitched text as needed */
left: 50%;
transform: translateX(-50%);
width: 60%; /* Adjust as needed */
margin: 0 auto;
padding: 15px 0 20px 0;
border: 1px solid #adafb2;
border-width: 1px 0;
overflow: hidden;
font-weight: bold;
list-style-type: none;
text-align: center;
}
ul#countdown li {
margin: 0 -3px 0 0;
padding: 0;
display: inline-block;
width: 15.5%; /* Adjust as needed */
font-size: 6vw;
text-align: center;
}
ul#countdown li .label {
color: #adafb2;
font-size: 1.5vw;
text-transform: uppercase;
}
.container {
display: flex;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
padding: 20px;
flex-direction: column;
align-items: center;
text-align: center;
gap: 20px;
padding: 20px;
}
.card {
flex: 1;
width: 100%;
max-width: 280px;
max-height: 200px;
position: relative;
background-color: rgb(16 16 16);
border: 1px solid rgb(255 255 255 / 5%);
border-radius: 1rem;
padding: 0rem;
}
.card:after {
content: "";
height: 70px;
width: 1px;
position: absolute;
left: -1px;
top: 65%;
background: linear-gradient(
transparent,
var(--primary-color),
transparent
);
opacity: 0;
transition: top 600ms ease, opacity 600ms ease; /* Separate transition properties */
}
.card:hover:after {
top: 25%;
opacity: 1;
}
.card-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-position: 50% 50%;
background-size: 1.1rem 1.1rem;
padding: 2rem;
border-radius: 1.25rem;
color: white;
height: 100%;
}
.card-content > :is(h1, h3, p) {
text-align: center;
margin: 0;
}
.card-content > h1 {
font-size: 1.2rem;
color: rgb(250 249 246);
margin-top: 0.5rem;
}
.card-content > p {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.75);
}
.about-text{
font-size: 1.5rem;
}
.about-section {
text-align: center;
color: white;
}
h1 {
font-size: 4rem;
}
.card-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.faq-heading , .contact{
color: white;
text-align: center;
}
.faq-container {
display: flex;
justify-content: center;
flex-direction: column;
}
.hr-line {
width: 80%;
margin: auto;
border: none;
border-top: 1px solid #777;
}
.faq-page {
color: white;
cursor: pointer;
padding: 15px 20px;
width: 80%;
border: none;
outline: none;
margin: auto;
font-size: 25px; /* Adjusted font size */
}
.faq-body {
margin: auto;
width: 60%;
padding: 20px;
color: white;
font-size: 16px;
}
.faq-body {
padding: 0 18px;
display: none;
overflow: hidden;
}
.faq-page:after {
content: "\02795";
font-size: 13px;
color: #777;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796";
}
#sponsors {
padding: 20px;
text-align: center;
overflow: hidden; /* Prevent overflowing content */
}
.center-title {
margin-bottom: 20px;
font-size: 2rem;
color: #fff;
}
/* Bento box styling */
/* Bento Box Container */
/* Bento Box Container */
.bento-box {
position: relative;
display: flex; /* Enable flexbox */
justify-content: center; /* Center items horizontally */
align-items: center; /* Center items vertically */
width: 100%;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease;
padding: 20px; /* Add some padding around the carousel */
background-color: #111111; /* Optional: Set a background color */
}
/* Glowing Effect on Hover */
.bento-box:hover {
box-shadow: 0 0 20px 5px rgba(0, 255, 255, 0.7); /* Customize the color and intensity */
transform: scale(1.01); /* Slight zoom effect to emphasize hover */
}
/* Carousel Container */
.carousel-container {
display: flex;
justify-content: center; /* Center the carousel horizontally */
align-items: center; /* Center the carousel vertically */
overflow: hidden;
width: 100%;
}
/* Carousel Track */
.carousel-track {
display: flex;
transition: transform 0.5s ease-in-out;
justify-content: center; /* Center the images inside the track */
align-items: center; /* Align items to the center */
}
/* Carousel Item */
.carousel-item {
min-width: 20%; /* Adjust based on the number of items you want visible */
padding: 10px; /* Space between the items */
display: flex;
justify-content: center; /* Ensure images are centered inside the item */
align-items: center; /* Center images vertically inside each item */
}
/* Image Styling */
.carousel-item img {
width: 100%;
height: auto;
display: block;
max-height: 150px; /* Optional: set a max-height to ensure the images are not too large */
object-fit: contain; /* Ensure the image maintains aspect ratio */
border-radius: 8px;
}
.contact-card {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.map-container {
flex: 1;
height: 350px; /* You can adjust the initial height as needed */
max-width: 600px; /* You can adjust the maximum width as needed */
margin: 10px;
}
.map-container iframe {
width: 100%;
height: 100%;
border: 0;
}
.contact-details {
flex: 1;
max-width: 400px;
padding: 20px;
background-color: #252525;
border-radius: 10px;
margin: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Style for sponsor category headings */
.sponsor-category h2,
.sponsor-category h3 {
text-align: center;
font-size: 1.2em; /* Adjust the heading size as needed */
margin-bottom: 10px;
}
/* Style for sponsor logos */
.sponsor-logos {
display: flex;
justify-content: center;
align-items: center;
}
/* Media query for smaller screens */
@media only screen and (max-width: 768px) { /* Hide links */
.navbar a {
display: none;
}
/* Show only button and logo */
.navbar a.logo,
.navbar a.button {
display: block;
}
/* Optionally, you can style the button and logo for smaller screens if needed */
.navbar a.logo {
font-size: 25px; /* Adjust as needed */
font-weight: bold;
}
.navbar a.button {
font-size: 20px; /* Adjust as needed */
padding: 8px 12px; /* Adjust as needed */
}
}
/* Media Query for Responsive Design */
@media (max-width: 768px) {
.hero h1 {
font-size: 6rem; /* Adjust the font size for smaller screens */
padding: 0.5rem 4rem; /* Adjust the padding for smaller screens */
}
.centered-image {
max-width: 350px; /* Adjust the max-width of the image for smaller screens */
}
.hackathon-text {
font-size: 2.2rem; /* Adjust as needed */
bottom: 20px; /* Adjust as needed */
}
.card-content > h1 {
font-size: 1rem;
}
h1 {
font-size: 3rem;
}
.about-text,
.faq-body {
font-size: 1rem; /* Adjust the font size for text on smaller screens */
}
.faq-page {
width: 100%; /* Adjust the width for FAQ pages on smaller screens */
}
.faq-container,
.card-container {
width: 100%; /* Adjust the width for container elements on smaller screens */
}
.hr-line {
width: 100%; /* Adjust the width for horizontal lines on smaller screens */
}
.sponsor-logos {
flex-direction: column; /* Stack logos vertically on small screens */
align-items: center;
}
.sponsor-logos img {
margin: 12px 0; /* Adjust spacing between logos */
}
}
/* Media Query for Even Smaller Screens (e.g., mobile phones) */
@media (max-width: 480px) {
.hero h1 {
font-size: 4rem;
padding: 0.5rem 5rem;
}
.centered-image {
max-width: 150px;
}
.hackathon-text{
font-size: 1.2rem;
bottom: 100px;
}
.card {
max-width: 100%; /* Make cards take up the full width on smaller screens */
max-height: none; /* Allow cards to adjust height based on content */
}
.card-content {
padding: 1.5rem;
}
.faq-page {
width: 100%; /* Adjust the width for FAQ pages on smaller screens */
}
h1{
font-size: 1.2rem; /* Adjust the font size for smaller screens */
}
.faq-page {
font-size: 18px; /* Adjust the font size for FAQ pages on smaller screens */
width: 90%; /* Adjust the width for FAQ pages on smaller screens */
margin: 0 auto; /* Center the FAQ pages */
}
.hr-line {
width: 80%; /* Adjust the width for horizontal lines on smaller screens */
margin: 10px auto; /* Center the horizontal lines */
}
/* Add this style to limit the width of the container */
.container {
max-width: 100%; /* Adjust the max-width for the container */
}
.glitch-wrapper h2 {
font-size: 1rem !important;
}
}
@media (max-width: 320px) {
.glitch-wrapper h2 {
font-size:0.9rem !important;
}
.hero h1 {
font-size: 3rem;
padding: 0.5rem 5rem;
}
.centered-image {
max-width: 150px;
}
.hackathon-text {
font-size: .85rem;
bottom: 120px;
}
}
.icon-container {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 30px;
}
.icon {
display: inline-block;
width: 60px;
height: 60px;
background-color: #fff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}