-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
970 lines (810 loc) · 61.7 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
<html>
<head>
<!-- Google tag (gtag.js) -->
<script type="text/javascript" async src="https://www.googletagmanager.com/gtag/js?id=G-4NDNKLJ648"></script>
<script type="text/javascript">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4NDNKLJ648');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
html{scroll-behavior:smooth;}
@font-face{
font-family:vampire;
src:url("Vampire Wars Italic.ttf");
}
a{text-decoration:none; color:white; font-family:JetBrains Mono,monospace;}
.home{height:1vw; margin-right:2.5rem; font-size:1.05rem; color:rgb(202 192 179); transition:300ms ease;}
.home:hover{color:rgb(192,192,255); transition:1500ms ease;}
.about{height:1vw; margin-right:2.5rem; font-size:1.05rem; color:rgb(202 192 179); transition:300ms ease;}
.about:hover{color:rgb(192,192,255); transition:1500ms ease;}
.events{height:1vw; margin-right:2.5rem; font-size:1.05rem; color:rgb(202 192 179); transition:300ms ease;}
.events:hover{color:rgb(192,192,255); transition:1500ms ease;}
.sponsor{height:1vw; margin-right:2.5rem; font-size:1.05rem; color:rgb(202 192 179); transition:300ms ease;}
.sponsor:hover{color:rgb(192,192,255); transition:1500ms ease;}
.timeline{height:1vw; margin-right:2.5rem; font-size:1.05rem; color:rgb(202 192 179); transition:300ms ease;}
.timeline:hover{color:rgb(192,192,255); transition:1500ms ease;}
.top_menu{padding:1.5vw 0vw; display:flex; justify-content:right;}
.register_div{
margin-right:2.5rem;
margin-top:-1.7vw;
clip-path:polygon(12px 0px, 100% 0px, 100% 72%, calc(100% - 12px) 100%, 0px 100%, 0px 12px);
background:;
background:white;
height:3.2vw;
width:7vw;
background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
text-align:center;
font-size:1vw;
font-family:JetBrains Mono,monospace;
cursor:pointer;
transition:100ms ease;
}
.p_reg{position:relative; top:.85vw; color:white ; font-weight:;}
.register_div:hover{transform:scale(1.2); transition:300ms ease;}
.decode_ip_addr_div{
height:2vw;
position:absolute;
width:31.7vw;
background:blue;
top:43vw;
left:35vw;
opacity:0.4;
filter:blur(100px);
}
.decode_ip_addr1{
position:absolute;
top:25vw;
left:28vw;
text-shadow:0vw 0vw 1vw white;
}
.ip{cursor:default;}
.decode_ip_addr1:hover{opacity:0;transition:100ms ease;}
.decode_ip_addr1:hover + .decode_ip_addr2{opacity:1; transition:100ms ease;}
.decode_ip_addr2{position:absolute; left:36vw; top:32vw; opacity:0; text-shadow:0vw 0vw 1vw red;}
@font-face{
font-family:steamy;
src:url("Steamy.otf");
}
@font-face{
font-family:rc;
src:url("R&C-Demo.otf");
}
@font-face{
font-family:charge;
src:url("6809 Chargen.otf");
}
@font-face{
font-family:font1;
src:url("Cyrulik-SharpBold.ttf");
}
@font-face{
font-family:font2;
src:url("Aguante.otf");
}
@font-face{
font-family:kannada;
src:url("Nudi 17 e Regular.ttf");
}
@font-face{
font-family:glitch;
src:url("Demosdcyberglitch-yw6GM.ttf");
}
@font-face{
font-family: font_no;
src: url("WolfalconRegular-RpjW3.ttf");
}
@font-face{
font-family: main_font;
src: url("ARABOLIC.TTF");
}
body{background:black;}
.main_font{
position:absolute;
top:0vw;
left:28.2vw;
cursor:default;
text-shadow:0vw 0vw 0.5vw white;
}
@keyframes anm_fade{from{opacity:1;} to{opacity:0;}}
@keyframes anm_defade{from{opacity:0;} to{opacity:1;}}
/* Desktop Disable###################################################### */
.options{display:none;}
.top_div{display:none;}
.top_div_animation{display:none;}
.top_div_tittle{display:none;}
.animation_change_page{display:none;}
.main_1_head{display:none;}
.main_content_1_rotating_planets_with_astronaut{display:none;}
.main_content_2_about{display:none;}
.main_content_3_events{display:none;}
.main_content_4_sponsors{display:none;}
.main_content_5_footer{display:none;}
.flashmob_trial{display:none;}
.grad_1{display:none;}
.grad_2{display:none;}
.grad_2_img{display:none;}
/* ##################################################################### */
@media (max-width:480px){
.main_font{display:none;}
.ip{display:none;}
.decode_ip_addr1{display:none;}
.decode_ip_addr2{display:none;}
.main_font{display:none;}
.top_menu{display:none;}
.top_div_vertical_line{display:none;}
.top_div_horizontal_line{display:none;}
.top_div_menu{display:none;}
.options{position:absolute; display:block; height:0vw; width:100%; top:23vw; left:0vw; background-color:black; z-index:1000000; overflow:hidden;}
.options_events{position:absolute; font-size:10vw; font-family:font1; left:35vw; top:10vw; letter-spacing:.5vw; opacity:0;}
.options_abt{position:absolute; font-size:10vw; font-family:font1; left:35.8vw; top:23vw; letter-spacing:.5vw; opacity:0;}
.options_gall{position:absolute; font-size:10vw; font-family:font1; left:34vw; top:36vw; letter-spacing:.5vw; opacity:0;}
.options_team{position:absolute; font-size:10vw; font-family:font1; left:37.5vw; top:49vw; letter-spacing:.5vw; opacity:0;}
.options_reg{position:absolute; font-size:10vw; font-family:font1; left:32.5vw; top:62vw; letter-spacing:.5vw; opacity:0;}
.top_div{display:block; position:absolute; height:22vw; width:100%; top:0; left:0; background-color:none; background-image:url("stars.png"); background-repeat:no-repeat; background-size:400% 400%; overflow:hidden;}
.top_div_animation{display:block; position:absolute; width:100%; height:22vw; top:0vw; left:0vw; background-color: white; animation:1s reveal_top_menu forwards; animation-delay:0.1s;}
.top_div_tittle{display:block; position:absolute; height:22vw; width:75%; top:0vw; left:0vw; background-color:none; cursor:default;}
.top_div_tittle_p{opacity:0; font-family:main_font; color:white; font-size:20vw; margin-left:2vw; margin-top:-3.5vw; line-height:; text-shadow:0vw 0vw 2vw white; animation:2s opacity_tittle forwards; animation-delay:0.3s;}
.top_div_vertical_line{display:block; position:absolute; height:100%; width:1vw; top:0; left:74vw; background-color:white;}
.top_div_horizontal_line{display:block; position:absolute; height:1vw; width:100%; top:22vw; left:0vw; background-color:white;}
.top_div_menu{display:block; position:absolute; height:80%; width:20vw; top:2.5vw; right:0.5vw; z-index:10000;}
.top_div_menu_button{position:absolute; height:100%; width:100%; background-color:transparent; border:none;}
.top_div_menu:hover .options{display:block;}
.menu_line_1{position:absolute; height:0.7vw; width:5.5vw; top:6vw; left:1.5vw; background-color:white; animation:0.7s menu_line_reveal forwards; animation-delay:0.1s;}
.menu_line_2{position:absolute; height:0.7vw; width:9.5vw; top:8.6vw; left:1.5vw; background-color:white; animation:0.7s menu_line_reveal forwards; animation-delay:0.17s;}
.menu_line_3{position:absolute; height:0.7vw; width:14vw; top:10.85vw; left:1.5vw; background-color:white; animation:0.7s menu_line_reveal forwards; animation-delay:0.22s;}
.main_1_head{display:block; position:absolute; height:55vw; width:100%; top:22vw; left:0vw; border-bottom:1vw solid white; background-image:url("stars.png"); background-repeat:no-repeat; background-size:150% 150%; overflow:hidden;}
.main_1_head_animation{position:absolute; height:55vw; width:100%; top:0vw; left:0vw; background-color: white; animation:1s reveal_main_1_head forwards; animation-delay:0.15s;}
.head_p_1{font-family:font1; margin-top:10vw; text-align:center; color:white; font-size:8vw; text-shadow: 0vw 0vw 1vw white; animation:1s scale_head_p forwards; animation-delay:0.18s;}
.head_p_2{font-family:font_no; margin-top:-14vw; text-align:center; color:white; font-size:20vw; text-shadow: 0vw 0vw 1vw white; animation:1s scale_head_p forwards; animation-delay:0.18s;}
.head_p_3{font-family:font1; margin-top:-23vw; text-align:center; color:white; font-size:8vw; text-shadow: 0vw 0vw 1vw white; animation:1s scale_head_p forwards; animation-delay:0.18s;}
.main_content_1_rotating_planets_with_astronaut{display:block; position:absolute; height:130vw; width:100%; top:78vw; left:0vw; border-bottom:1vw solid white; background-image:url("stars.png"); background-repeat:no-repeat; background-size:100% 100%; overflow:hidden; transition:1s ease;}
.main_content_1_rotating_planets_with_astronaut_animation{z-index:10000; position:absolute; width:100%; height:100%; top:0vw; left:0vw; background-color: white; animation:1.2s reveal_astronaut forwards; animation-delay: 0.15s;}
.main_content_1_astronaut{position:absolute; height:80vw; width:61vw; top:21vw; left:21.5vw; background-image:url("astro_bb-removebg.png"); background-repeat:no-repeat; background-size:100% 100%; animation-name:astronaut_float, astronaut_rev; animation-duration:1.5s, 1.5s; animation-iteration-count:infinite, 1; animation-direction:alternate-reverse, normal; animation-timing-function:ease-in; animation-fill-mode:forwards, forwards; animation-delay:1s, 1s; opacity:0;}
.main_content_1_astronaut_circle_1{position:absolute; height:77vw; width:77vw; top:27vw; left:11.5vw; border-radius:50%; border:1vw solid white; background:transparent; animation:1s astro_circle_1 forwards ease-in;}
.main_content_1_astronaut_circle_2{position:absolute; height:98vw; width:97vw; top:16.3vw; left:1vw; border-radius:50%; border:1vw solid white; background:transparent; animation:1s astro_circle_2 forwards ease-in; animation-delay:1s; left:-100vw;}
.main_content_1_astronaut_planet_1{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b1.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:none, forwards; animation-timing-function:linear; animation-delay:0.87s, 0.9s;}
.main_content_1_astronaut_planet_2{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b2.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:none, forwards; animation-timing-function:linear; animation-delay:1.74s, 1.8s;}
.main_content_1_astronaut_planet_3{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b3.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:none, forwards; animation-timing-function:linear; animation-delay:2.61s, 2.7s;}
.main_content_1_astronaut_planet_4{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b4.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:none, forwards; animation-timing-function:linear; animation-delay:3.48s, 3.6s;}
.main_content_1_astronaut_planet_5{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b1.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:forwards, forwards; animation-timing-function:linear; animation-delay:4.35s, 4.5s;}
.main_content_1_astronaut_planet_6{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b2.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:forwards, forwards; animation-timing-function:linear; animation-delay:5.22s, 5.4s;}
.main_content_1_astronaut_planet_7{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b3.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:forwards, forwards; animation-timing-function:linear; animation-delay:6.09s, 6.3s;}
.main_content_1_astronaut_planet_8{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b4.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:forwards, forwards; animation-timing-function:linear; animation-delay:6.96s, 7.2s;}
.main_content_1_astronaut_planet_9{position:absolute; opacity:0; display:; height:10vw; width:10vw; top:62vw; left:47vw; background-image:url("b2.png"); background-repeat:no-repeat; animation:blob,planets_reveal; animation-duration:8s, 3s; animation-iteration-count:infinite, 1; animation-fill-mode:forwards, forwards; animation-timing-function:linear; animation-delay:7.83s, 8.1s;}
.cont_main_astro_move{position:absolute; background-color: #4158D0; top:-10vw; height: auto; width: auto; }
.main_content_2_about{display:block; position: absolute; height:275vw; width:100%; top:199vw; left:0vw ; background-image:url("stars.png"); background-repeat: no-repeat; background-size:cover; overflow-x:hidden; border-bottom:1vw solid white; opacity:0; transition:2s;}
.main_content_1_about_gif{position: absolute; height:120vw; width:149vw; top:25vw; left:-32vw; background:; background-image:url("back_2.gif"); background-repeat: no-repeat; background-size:110% 110%;}
.main_content_1_about_gif_star_cover{position: absolute; height:140vw; width:100%; top:10vw; left:0vw; background-image: url("stars.png"); background-repeat: no-repeat; background-size: 120% 120%;}
.main_content_1_about_logo{position: absolute; height:90vw; width:90vw; top:42vw; left:7vw; background-image: url("Group\ 13889.png"); background-repeat: no-repeat; background-size: 100% 100%;}
.main_content_2_about_top_animaiton_div{display:block; position: absolute; top:0vw; left:0vw; height: 20vw; width: 100%; border-bottom: 1vw solid white; overflow: hidden; animation:2s about_border_bottom_animation infinite linear; animation-direction:alternate-reverse;}
.main_content_2_about_top_animaiton_div_glow_div{position: absolute; height:1vw; width:100%; top:20vw; left:0vw; background-color: white; animation:2s about_border_bottom_animation infinite linear; animation-direction:alternate-reverse;}
.main_content_2_about_top_animaiton_div_p_1{position: absolute; color:white; top:-1vw; left:default; font-size:10vw; font-family: font1; animation:5s about_move_p_1 infinite linear;}
.main_content_2_about_top_animaiton_div_p_2{position: absolute; color:white; top:-1vw; left:-30vw; font-size:10vw; font-family: font1; animation:5s about_move_p_2 infinite linear; animation-delay:3s;}
.main_content_2_about_p{color:white; position:absolute; top:138vw; left:5vw; font-family:font1; font-size:5.5vw;}
.main_content_2_about_p_vy1{font-family:steamy; font-size:10vw; line-height:12vw;}
.main_content_2_about_p_vy2{font-family:steamy; font-size:10vw; line-height:12vw; opacity:;}
.main_content_2_about_p_vy3{font-family:steamy; font-size:10vw; line-height:12vw; opacity:;}
.main_content_3_events{display:block; position:absolute; top:475vw; left:0vw; height:140vw; width:100%; background-image:url("stars.png"); background-repeat:no-repeat; background-size:100% 100%; border-bottom:1vw solid white;}
.main_content_3_events_top_animaiton_div{position: absolute; top:0vw; left:0vw; height:10vw; width: 100%; border-bottom: 1vw solid white; overflow: hidden; animation:2s about_border_bottom_animation infinite linear; animation-direction:alternate-reverse;}
.main_content_3_events_top_animaiton_div_p_1{position: absolute; color:white; top:-10vw; left:default; font-size:10vw; font-family: font1; animation:5s about_move_p_1 infinite linear;}
.main_content_3_events_top_animaiton_div_p_2{position: absolute; color:white; top:-10vw; left:-30vw; font-size:10vw; font-family: font1; animation:5s about_move_p_2 infinite linear; animation-delay:3s;}
.main_content_3_events_main_box_1{position:absolute; top:25vw; left:6vw; height:92vw; width:88vw; background-color:white; border-radius:10vw; transform:rotate(0deg);}
.main_content_3_events_main_box_1_heading{position:absolute; top:-4vw; left:9vw; font-size:10vw; font-family:steamy;}
.main_content_3_events_main_box_1_p_1{position:absolute; top:50vw; left:27vw; font-size:8vw; font-family:steamy;}
.main_content_3_events_main_box_1_photo_1{position:absolute; top:20vw; left:9vw; height:33vw; width:80%; background-image:url("box1_photo.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_1_see_events_button{position:absolute; height:13vw; width:40vw; background-color:blue; border-radius:10vw; left:24.5vw; top:72vw; box-shadow:0 0.5vw 2vw black; animation:1.5s move1 infinite; animation-direction:alternate-reverse;}
.main_content_3_events_main_box_1_arrow{position:absolute; height:10vw; width:20vw; top:1.5vw; left:9.5vw; background-image:url("arrow.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_2{position:absolute; top:25vw; left:100vw; height:92vw; width:88vw; background-color:white; border-radius:10vw; transform:rotate(0deg);}
.main_content_3_events_main_box_2_heading{position:absolute; top:-4vw; left:15vw; font-size:10vw; font-family:steamy;}
.main_content_3_events_main_box_2_p_1{position:absolute; top:50vw; left:27vw; font-size:8vw; font-family:steamy;}
.main_content_3_events_main_box_2_photo_1{position:absolute; top:20vw; left:9vw; height:33vw; width:80%; background-image:url("box2_photo.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_2_see_events_button{position:absolute; height:13vw; width:40vw; background-color:blue; border-radius:10vw; left:24.5vw; top:72vw; box-shadow:0 0.5vw 2vw black; animation:1.5s move1 infinite; animation-direction:alternate-reverse;}
.main_content_3_events_main_box_2_arrow{position:absolute; height:10vw; width:20vw; top:1.5vw; left:9.5vw; background-image:url("arrow.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_3{position:absolute; top:25vw; left:195vw; height:92vw; width:88vw; border-radius:10vw; transform:rotate(0deg); background-color:white; }
.main_content_3_events_main_box_3_photo_1{position:absolute; top:20vw; left:9vw; height:33vw; width:80%; background-image:url("flashmob_photo.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_3_see_events_button{position:absolute; height:13vw; width:40vw; background-color:blue; border-radius:10vw; left:24.5vw; top:72vw; box-shadow:0 0.5vw 2vw black; animation:1.5s move1 infinite; animation-direction:alternate-reverse;}
.main_content_3_events_main_box_3_p_1{position:absolute; top:50vw; left:27vw; font-size:8vw; font-family:steamy;}
.main_content_3_events_main_box_3_arrow{position:absolute; height:10vw; width:20vw; top:1.5vw; left:9.5vw; background-image:url("arrow.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_3_heading{position:absolute; font-size:10vw; left:15vw; top:-4vw; font-family:steamy; color:black;}
.main_content_3_events_main_box_4{position:absolute; top:25vw; left:290vw; height:92vw; width:88vw; background-color:white; border-radius:10vw; transform:rotate(0deg);}
.main_content_3_events_main_box_4_heading{position:absolute; top:-4vw; left:12vw; font-size:10vw; font-family:steamy;}
.main_content_3_events_main_box_4_p_1{position:absolute; top:50vw; left:27vw; font-size:8vw; font-family:steamy;}
.main_content_3_events_main_box_4_photo_1{position:absolute; top:20vw; left:9vw; height:33vw; width:80%; background-image:url("theatre.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_4_see_events_button{position:absolute; height:13vw; width:40vw; background-color:blue; border-radius:10vw; left:24.5vw; top:72vw; box-shadow:0 0.5vw 2vw black; animation:1.5s move1 infinite; animation-direction:alternate-reverse;}
.main_content_3_events_main_box_4_arrow{position:absolute; height:10vw; width:20vw; top:1.5vw; left:9.5vw; background-image:url("arrow.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_5{position:absolute; top:25vw; left:385vw; height:92vw; width:88vw; background-color:white; border-radius:10vw; transform:rotate(0deg);}
.main_content_3_events_main_box_5_heading{position:absolute; top:-4vw; left:19vw; font-size:10vw; font-family:steamy;}
.main_content_3_events_main_box_5_p_1{position:absolute; top:50vw; left:27vw; font-size:8vw; font-family:steamy;}
.main_content_3_events_main_box_5_photo_1{position:absolute; top:20vw; left:9vw; height:33vw; width:80%; background-image:url("aditya_l1.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_5_see_events_button{position:absolute; height:13vw; width:40vw; background-color:blue; border-radius:10vw; left:24.5vw; top:72vw; box-shadow:0 0.5vw 2vw black; animation:1.5s move1 infinite; animation-direction:alternate-reverse;}
.main_content_3_events_main_box_5_arrow{position:absolute; height:10vw; width:20vw; top:1.5vw; left:9.5vw; background-image:url("arrow.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_6{position:absolute; top:25vw; left:480vw; height:92vw; width:88vw; background-color:white; border-radius:10vw; transform:rotate(0deg);}
.main_content_3_events_main_box_6_heading{position:absolute; top:-4vw; left:9vw; font-size:10vw; font-family:steamy;}
.main_content_3_events_main_box_6_p_1{position:absolute; top:50vw; left:27vw; font-size:8vw; font-family:steamy;}
.main_content_3_events_main_box_6_photo_1{position:absolute; top:20vw; left:9vw; height:33vw; width:80%; background-image:url("chandrayaan_3.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_main_box_6_see_events_button{position:absolute; height:13vw; width:40vw; background-color:blue; border-radius:10vw; left:24.5vw; top:72vw; box-shadow:0 0.5vw 2vw black; animation:1.5s move1 infinite; animation-direction:alternate-reverse;}
.main_content_3_events_main_box_6_arrow{position:absolute; height:10vw; width:20vw; top:1.5vw; left:9.5vw; background-image:url("arrow.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_3_events_scroll_box::-webkit-scrollbar {
display: none;
}
.main_content_3_events_scroll_box{position:absolute; top:0vw; left:0vw; height:120vw; width:100%; overflow-y:scroll; scrollbar-width:none;}
.box_2{position:absolute; display:; width:20vw; height:20vw; left:555vw; background-color:;}
.main_content_3_events_scroll_p{position:absolute; font-size:8.5vw; font-family:steamy; color:white; top:115vw; left:14vw; animation:.5s font infinite; animation-direction:alternate-reverse;}
.main_content_4_sponsors{display:block; position:absolute; height:160vw; width:100%; top:616vw; left:0vw; background-image:url("stars.png"); background-repeat:no-repeat; background-size:100% 100%; border-bottom:1vw solid white;}
.main_content_4_sponsors_top_animaiton_div{position: absolute; top:0vw; left:0vw; height: 10vw; width: 100%; border-bottom: 1vw solid white; overflow: hidden; animation:2s about_border_bottom_animation infinite linear; animation-direction:alternate-reverse;}
.main_content_4_sponsors_top_animaiton_div_glow_div{position: absolute; height:1vw; width:100%; top:20vw; left:0vw; background-color: white; animation:2s about_border_bottom_animation infinite linear; animation-direction:alternate-reverse;}
.main_content_4_sponsors_top_animaiton_div_p_1{position: absolute; color:white; top:-10vw; left:default; font-size:10vw; font-family: font1; animation:5s sponsors_move_p_1 infinite linear;}
.main_content_4_sponsors_top_animaiton_div_p_2{position: absolute; color:white; top:-10vw; left:-40vw; font-size:10vw; font-family: font1; animation:5s sponsors_move_p_2 infinite linear; animation-delay:3s;}
.main_content_4_sponsors_1{position:absolute; height:40vw; width:40vw; top:25vw; left:2vw; border-radius:50%; background-color:rgba(255,255,255,1); transition:1s ease;}
.main_content_4_sponsors_1_photo{position:absolute; height:20vw; width:20vw; top:8.5vw; left:11vw; background-image:url("clg_logo.jpeg"); background-repeat:no-repeat; background-size:100% 100%; transition:1s ease;}
.main_content_4_sponsors_1:hover{border-radius:0%; transition:1s ease;}
.main_content_4_sponsors_1:hover .main_content_4_sponsors_1_photo{top:2vw; transition:1s ease;}
.main_content_4_sponsors_1_p{position:absolute; top:20vw; left:10.5vw; font-size:7vw; font-family:steamy; opacity:0; transition:1s ease;}
.main_content_4_sponsors_1:hover .main_content_4_sponsors_1_p{opacity:1; transition:1s ease;}
.main_content_4_sponsors_2{position:absolute; height:40vw; width:40vw; top:25vw; right:2vw; border-radius:50%; background-color:black; transition:1s ease;}
.main_content_4_sponsors_2_photo{position:absolute; height:30vw; width:30vw; top:4vw; left:5.5vw; background-image:url("aero_sjcit.jpeg"); background-repeat:no-repeat; background-size:100% 100%; transition:1s ease; border-radius:40vw;}
.main_content_4_sponsors_2:hover{border-radius:0%; transition:1s ease;}
.main_content_4_sponsors_2:hover .main_content_4_sponsors_2_photo{top:0vw; transition:1s ease;}
.main_content_4_sponsors_2_p{position:absolute; top:20vw; left:5vw; font-size:7vw; font-family:steamy; opacity:0; transition:1s ease;}
.main_content_4_sponsors_2:hover .main_content_4_sponsors_2_p{opacity:1; transition:1s ease; color:white;}
.main_content_4_sponsors_3{position:absolute; height:50vw; width:80vw; top:85vw; right:10vw; border-radius:9%; background-color:white; transition:1s ease;}
.main_content_4_sponsors_3_photo{position:absolute; height:30vw; width:100%; top:4vw; left:0vw; background-image:url("sponsor_1.jpeg"); background-repeat:no-repeat; background-size:100% 100%; transition:1s ease; border-radius:0vw;}
.main_content_4_sponsors_3:hover{border-radius:0%; transition:1s ease;}
.main_content_4_sponsors_3:hover .main_content_4_sponsors_3_photo{top:0vw; transition:1s ease;}
.main_content_4_sponsors_3_p{position:absolute; top:31vw; left:3vw; font-size:6vw; font-family:steamy; opacity:0; transition:1s ease;}
.main_content_4_sponsors_3:hover .main_content_4_sponsors_3_p{opacity:1; transition:1s ease; color:black;}
.main_content_5_footer{display:block; position:absolute; height:195vw; width:100%; top:776.5vw; left:0vw;background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);}
.main_content_5_footer_top_div{background-color:none; width:100%; height:35vw;}
.main_content_5_footer_top_div_p1{position:absolute; font-size:4.5vw; color:orange; left:27vw; top:5vw; text-align:center; cursor:default; font-weight:100;}
.main_content_5_footer_top_div_p2{position:absolute; font-size:4.5vw; color:orange; left:4vw; top:13vw; text-align:center; cursor:default;}
.main_content_5_footer_top_div_p3{position:absolute; font-size:4.5vw; color:orange; left:20vw; top:23vw; text-align:center; cursor:default;}
.main_content_5_footer_top_div_photo1{position:absolute; height:10vw; width:10vw; top:4vw; left:4vw; background-image:url("dhehs-834x1024-1.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_5_footer_top_div_photo2{position:absolute; height:10vw; width:10vw; top:4vw; left:86vw; background-image:url("swamiji-5-min-6-1197x1536-1-798x1024.png"); background-repeat:no-repeat; background-size:100% 100%;}
.main_content_5_footer_links{position:absolute; height:125vw; width:100%; top:28vw; left:0vw; background-color:none;}
.main_content_5_footer_links_follow_heading{position:absolute; font-family:steamy; font-size:10vw; color:white; left:37vw; text-shadow:0vw 0vw 1vw white; cursor:default;}
#main_content_5_footer_links_follow_facebook{position:absolute; font-size:8vw; top:28vw; left:5vw; text-shadow:0vw 0vw 1vw white;}
#main_content_5_footer_links_follow_instagram{position:absolute; font-size:8vw; top:42vw; left:4vw; text-shadow:0vw 0vw 1vw white;}
#main_content_5_footer_links_follow_twitter{position:absolute; font-size:8vw; top:55vw; left:4vw; text-shadow:0vw 0vw 1vw white;}
#main_content_5_footer_links_follow_youtube{position:absolute; font-size:8vw; top:67vw; left:4vw; text-shadow:0vw 0vw 1vw white;}
.main_content_5_footer_links_follow_instagram_text_link_in{position:absolute; top:42vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_5_footer_links_follow_instagram:hover{border-left:1vw solid white; color:#ff1c51; text-shadow:none;}
.main_content_5_footer_links_follow_instagram_text_link_in:hover{border-bottom:1vw solid white;}
.main_content_5_footer_links_follow_instagram_text_link_in:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_5_footer_links_follow_twitter_text_link_tw{position:absolute; top:55vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_5_footer_links_follow_twitter:hover{border-left:1vw solid white; color:blue; text-shadow:none;}
.main_content_5_footer_links_follow_twitter_text_link_tw:hover{border-bottom:1vw solid white;}
.main_content_5_footer_links_follow_twitter_text_link_tw:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_5_footer_links_follow_facebook_text_link_fb{position:absolute; top:27.5vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_5_footer_links_follow_facebook:hover{border-left:1vw solid white; color:#087dea; text-shadow:none;}
.main_content_5_footer_links_follow_facebook_text_link_fb:hover{border-bottom:1vw solid white; cursor:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="blue" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-facebook"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/></svg>'),auto;}
.main_content_5_footer_links_follow_facebook_text_link_fb:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_5_footer_links_follow_youtube_text_link_yt{position:absolute; top:67vw; left:18vw; font-size:7vw; text-shadow:0vw 0vw 1vw white;}
#main_content_5_footer_links_follow_youtube:hover{border-left:1vw solid white; color:red; text-shadow:none;}
.main_content_5_footer_links_follow_youtube_text_link_yt:hover{border-bottom:1vw solid white;}
.main_content_5_footer_links_follow_youtube_text_link_yt:hover #main_content_5_footer_links_follow_facebook{border-left:1vw solid white;}
.main_content_5_footer_links_more_heading{position:absolute; font-size:10vw; font-family:steamy; color:white; text-shadow:0vw 0vw 1vw white; top:70vw; left:38vw; cursor:default;}
.main_content_5_footer_links_more_home{position:absolute; top:94vw; left:10vw; font-size:6.5vw; color:white; text-shadow:0vw 0vw 1vw white;}
.main_content_5_footer_links_more_sjcit{position:absolute; top:105vw; left:10vw; font-size:6.5vw; color:white; text-shadow:0vw 0vw 1vw white;}
.main_content_5_footer_links_more_register{position:absolute; top:116vw; left:10vw; font-size:6.5vw; color:white; text-shadow:0vw 0vw 1vw white;}
.main_content_5_footer_bottom_addr_h{position:absolute; font-size:8vw; top:127vw; left:36vw; font-family:steamy; color:white; animation:1s color_change infinite linear; animation-direction:alternate-reverse; cursor:default;}
.main_content_5_footer_bottom_addr_p{position:absolute; font-size:5.5vw; top:143vw; text-align:center; left:10vw; font-family:font1; color:white; animation:1s color_change infinite linear; animation-direction:alternate-reverse; cursor:default;}
.flashmob_trial{text-align:center; display:block; position:absolute; height:185vw; width:100%; top:23vw; left:0vw; background-image:url("flashmob.jpeg"); background-repeat:no-repeat; background-size:100% 100%; transition:1s ease; cursor:default; display:none;}
.flashmob_trial_photo{position:absolute; color:white; font-family:steamy; font-size:17vw; top:100vw; left:1vw; font-weight:normal; opacity:0.9;}
.flash_mob_date{position:absolute; color:white; font-family:font2; font-size:10vw; left:10vw; top:130vw;}
.flashmob_close{position:absolute; color:red; width:35vw; height:12vw; background-color:#CA42A9; border:0.5vw solid black; border-radius:10vw; right:33vw; top:165vw; opacity:0.8;}
.flashmob_close_p{position:absolute; top:-8vw; left:6.7vw; font-size:8vw; color:white;}
.animation_change_page{display:none; position:fixed; height:100%; width:100%; top:0vw; left:0vw; background-color:; z-index:10000000;}
.animation_change_page_inside_top{display:none; position:absolute; height:15vw; width:100%; top:0vw; left:0vw; background-color:black;}
.animation_change_page_inside_bottom{display:none; position:absolute; height:15vw; width:100%; bottom:0vw; left:0vw; background-color:black;}
.animation_change_page_inside_left{display:none; position:absolute; height:100%; width:15vw; top:0vw; left:0vw; background-color:black;}
.animation_change_page_inside_right{display:none; position:absolute; height:100%; width:15vw; top:0vw; right:0vw; background-color:black;}
.grad_1{display:block; position:absolute; height:177vw; width:100%; top:0vw; left:0vw; background: rgb(255,255,255);
background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(76,54,255,1) 100%); opacity:0.5; z-index:-100;}
.grad_2{display:block; position:absolute; height:255vw; width:100%; top:302vw; left:0vw; background: rgb(28,1,255);
background: linear-gradient(0deg, rgba(28,1,255,1) 0%, rgba(246,246,246,0) 100%); opacity:0.5; z-index:-100; filter:blur(0vw);}
.grad_2_img{display:block; position:absolute; width:100%; height:230vw; top:547vw; left:0vw; z-index:-100; background-image:url("rocket_img_grad_2.png"); background-repeat:no-repeat; background-size:cover;}
@keyframes blob{from{transform:rotate(0deg)translateY(45vw)rotate(0deg)} to{transform:rotate(360deg)translateY(43vw)rotate(-360deg)}}
@keyframes font{0%{text-shadow: 0vw 0vw 0vw black;} 100%{text-shadow: 0vw 0vw 1vw white;}}
@keyframes reveal_top_menu{from{height:22vw;} to{height:0vw;}}
@keyframes reveal_main_1_head {from{height:55vw;} to{height:0vw;}}
@keyframes reveal_astronaut {from{height:100%;} to{height: 0vw;}}
@keyframes scale_head_p{from{scale:5;} to{scale:1;}}
@keyframes opacity_tittle{from{opacity:0; scale:0.8;} to{opacity: 1; scale: 1;}}
@keyframes menu_line_reveal{from{left:1000vw;} to{left:1.5vw;}}
@keyframes astronaut_float{from{top:24vw;} to{top:21vw;}}
@keyframes planets_reveal{from{opacity:0;} to{opacity:1;}}
@keyframes about_move_p_1{from{left:100vw;} to{left:-20vw;}}
@keyframes about_move_p_2{from{left:100vw;} to{left:-20vw;}}
@keyframes sponsors_move_p_1{from{left:100vw;} to{left:-40vw;}}
@keyframes sponsors_move_p_2{from{left:100vw;} to{left:-40vw;}}
@keyframes color_change{from{text-shadow:0vw 0vw 0vw white;} to{text-shadow:0vw 0vw 1vw white;}}
@keyframes menu_box_reveal{from{height:0vw;} to{height:90vw;}}
@keyframes menu_reveal_events{from{opacity:0; left:0vw;} to{opacity:1; left:35vw;}}
@keyframes menu_reveal_abt{from{opacity:0; left:0vw;} to{opacity:1; left:35.8vw;}}
@keyframes menu_reveal_gall{from{opacity:0; left:0vw;} to{opacity:1; left:34vw;}}
@keyframes menu_reveal_team{from{opacity:0; left:0vw;} to{opacity:1; left:37.5vw;}}
@keyframes menu_reveal_reg{from{opacity:0; left:0vw;} to{opacity:1; left:32.5vw;}}
@keyframes menu_dereveal_events{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_abt{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_gall{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_team{from{opacity:1;} to{opacity:0;}}
@keyframes menu_dereveal_reg{from{opacity:1;} to{opacity:0;}}
@keyframes menu_box_dereveal{from{height:90vw;} to{height:0vw;}}
@keyframes menu_box_none{from{display:block;} to{display:none;}}
@keyframes menu_line_1{from{width:5.5vw;} to{width:14vw;}}
@keyframes menu_line_3{from{width:14vw;} to{width:5.5vw;}}
@keyframes menu_line_1_renew{from{width:14vw;} to{width:5.5vw;}}
@keyframes menu_line_3_renew{from{width:5.5vw;} to{width:14vw;}}
@keyframes page_anm_top{from{top:-15vw;} to{top:0vw;}}
@keyframes page_anm_bottom{from{bottom:-15vw;} to{bottom:0vw;}}
@keyframes page_anm_left{from{left:-15vw;} to{left:0vw;}}
@keyframes page_anm_right{from{right:-15vw;} to{right:0vw;}}
@keyframes page_anm_top_full{from{height:15vw;} to{height:100%;}}
@keyframes astronaut_rev{from{opacity:0;} to{opacity:1;}}
@keyframes astro_circle_1{from{height:1000vw; width:1000vw; top:-500vw; left:-300vw;} to{height:77vw; width:77vw; top:27vw; left:11.5vw;}}
@keyframes astro_circle_2{from{height:1000vw; width:1000vw; top:-500vw; left:-300vw;} to{height:97vw; width:98vw; top:16.3vw; left:1vw;}}
/*@keyframes about_border_bottom_animation{from{border-bottom-color:white; box-shadow: 0vw 0vw 0vw rgb(0, 0, 0);} to{border-bottom-color:white; box-shadow:0vw 0vw 5vw blue;}}*/
@keyframes move1{from{top:74vw;} to{top:70vw;}}
/*Write JS code so that all the blobs should appear when their animation is started, now they first appear in middle and after that they go in circle animation.-- Done without js.*/
}
</style>
</head>
<body>
<p class="main_font" style="font-family:main_font; color:white; font-size:12vw;">VYOMA</p>
<div class="ip"><div class="decode_ip_addr_div"></div>
<p id="let" class="decode_ip_addr1" style="font-family:font2; color:white; font-size:4vw;">20.5.3.8..9.19..6.1.20.1.12</p>
<p id="decode_ip_addr2" class="decode_ip_addr2" style="font-family:font2; color:red; font-size:4vw;">TECH IS FATAL</p></div>
<div class="top_menu">
<a href="#" class="home">Home</a>
<a href="#" class="about">About Us</a>
<a href="#" class="events">Events</a>
<a href="#" class="sponsor">Sponsors</a>
<a href="#" class="timeline">TimeLine</a>
<a href="test_fest_register.html"><div class="register_div"><p class="p_reg">Register</p></div></a>
</div>
<!-- Added Inline Comments for better understanding. -->
<div class="animation_change_page" id="animation_change_page" style="display:none;">
<div class="animation_change_page_inside_top" id="animation_change_page_inside_top" style="display:none;"></div>
<div class="animation_change_page_inside_bottom" id="animation_change_page_inside_bottom" style="display:none;"></div>
<div class="animation_change_page_inside_left" id="animation_change_page_inside_left" style="display:none;"></div>
<div class="animation_change_page_inside_right" id="animation_change_page_inside_right" style="display:none;"></div>
</div>
<div class="options" id="options" style="height:0vw;">
<a href="test_fest_events.html" class="options_events" id="events">Events</a>
<a href="#main_content_2_about" class="options_abt" id="about" onclick="menu()">About</a>
<a href="test_fest_gallery.html" class="options_gall" id="gallery">Gallery</a>
<a href="test_fest_team.html" class="options_team" id="team">Team</a>
<a href="test_fest_register.html" class="options_reg" id="register">Register</a>
</div>
<div class="top_div_horizontal_line"></div>
<div class="top_div">
<div class="top_div_animation"></div>
<div class="top_div_tittle" id="top"><p class="top_div_tittle_p">VYOMA</p></div>
<div class="top_div_vertical_line"></div>
<div class="top_div_menu" id="top_div_menu">
<button class="top_div_menu_button" onclick="menu()"></button>
<div class="menu_line_1" id="menu_line_1"></div>
<div class="menu_line_2"></div>
<div class="menu_line_3" id="menu_line_3"></div>
</div>
</div>
<div class="main_1_head">
<div class="main_1_head_animation"></div>
<p class="head_p_1">It's Time To Fly.</p>
<p class="head_p_2">2K23</p>
<p class="head_p_3">28th December</p>
</div>
<div class="main_content_1_rotating_planets_with_astronaut" id="main_content_1_rotating_planets_with_astronaut">
<div class="main_content_1_rotating_planets_with_astronaut_background_image_1"></div>
<div class="main_content_1_rotating_planets_with_astronaut_animation"></div>
<div class="cont_main_astro_move">
<div class="main_content_1_astronaut"></div>
<div class="main_content_1_astronaut_circle_1"></div>
<div class="main_content_1_astronaut_circle_2"></div>
<div class="main_content_1_astronaut_planet_1" id="planets1"></div>
<div class="main_content_1_astronaut_planet_2" id="planets2"></div>
<div class="main_content_1_astronaut_planet_3" id="planets3"></div>
<div class="main_content_1_astronaut_planet_4" id="planets4"></div>
<div class="main_content_1_astronaut_planet_5" id="planets5"></div>
<div class="main_content_1_astronaut_planet_6" id="planets6"></div>
<div class="main_content_1_astronaut_planet_7" id="planets7"></div>
<div class="main_content_1_astronaut_planet_8" id="planets8"></div>
<div class="main_content_1_astronaut_planet_9" id="planets9"></div>
</div>
</div>
<div class="main_content_2_about" id="main_content_2_about">
<div class="main_content_1_about_gif"></div>
<div class="main_content_1_about_gif_star_cover"></div>
<div class="main_content_1_about_logo"></div>
<div class="main_content_2_about_top_animaiton_div">
<p class="main_content_2_about_top_animaiton_div_p_1">About</p>
<p class="main_content_2_about_top_animaiton_div_p_2">About</p>
<div class="main_content_2_about_top_animaiton_div_glow_div"></div>
</div>
<div class="curved_line"></div>
<p class="main_content_2_about_p">Welcome to <span class="main_content_2_about_p_vy1">VYOMA</span>, the aerospace extravaganza hosted by SJCITs's Aerospace Branch. Join us for a dynamic celebration of innovation and excellence in aerospace.<br><br><span class="main_content_2_about_p_vy2">VYOMA</span> is a melting pot where enthusiasts, students, and professionals converge to explore the boundless possibilities of flight. Dive into a weekend featuring cutting-edge technology, hands-on workshops, and thrilling competitions. Our festival is not just an event; it's a platform for networking, learning, and experiencing the future of aerospace. Curated by our dedicated team, <span class="main_content_2_about_p_vy3">VYOMA</span> promises an unforgettable experience.</p>
</div>
<div class="main_content_3_events">
<div class="main_content_3_events_top_animaiton_div">
<p class="main_content_3_events_top_animaiton_div_p_1">Events</p>
<p class="main_content_3_events_top_animaiton_div_p_2">Events</p>
</div>
<div class="main_content_3_events_scroll_box">
<div class="main_content_3_events_main_box_1">
<p class="main_content_3_events_main_box_1_heading">Technical Events</p>
<p class="main_content_3_events_main_box_1_p_1">See Events</p>
<div class="main_content_3_events_main_box_1_photo_1"></div>
<a href="test_fest_events.html" id="main_content_3_events_main_box_1_see_events_button"><div class="main_content_3_events_main_box_1_see_events_button">
<div class="main_content_3_events_main_box_1_arrow"></div>
</div></a>
</div>
<div class="main_content_3_events_main_box_2">
<p class="main_content_3_events_main_box_2_heading">Fun Activities</p>
<p class="main_content_3_events_main_box_2_p_1">See Events</p>
<div class="main_content_3_events_main_box_2_photo_1"></div>
<a href="test_fest_events.html#main_2_fun_events" id="main_content_3_events_main_box_2_see_events_button"><div class="main_content_3_events_main_box_2_see_events_button">
<div class="main_content_3_events_main_box_2_arrow"></div>
</div></a>
</div>
<div class="main_content_3_events_main_box_3">
<p class="main_content_3_events_main_box_3_heading">FLASHMOB</p>
<div class="main_content_3_events_main_box_3_photo_1"></div>
<p class="main_content_3_events_main_box_3_p_1">See Events</p>
<div class="main_content_3_events_main_box_3_see_events_button" id="flash_mob_display">
<button class="flash_mob_button" onclick="flash_mob(); play_song()" style="cursor:pointer; position:absolute; height:100%; width:100%; top:0vw; left:0vw; background:transparent; border:none; z-index:100;"></button>
<div class="main_content_3_events_main_box_3_arrow"></div>
</div>
</div>
<div class="main_content_3_events_main_box_4">
<p class="main_content_3_events_main_box_4_heading">Amphi Theatre</p>
<p class="main_content_3_events_main_box_4_p_1">See Details</p>
<div class="main_content_3_events_main_box_4_photo_1"></div>
<div class="main_content_3_events_main_box_4_see_events_button">
<div class="main_content_3_events_main_box_4_arrow"></div>
</div>
</div>
<div class="main_content_3_events_main_box_5">
<p class="main_content_3_events_main_box_5_heading">ADITYA L1</p>
<p class="main_content_3_events_main_box_5_p_1">See Details</p>
<div class="main_content_3_events_main_box_5_photo_1"></div>
<div class="main_content_3_events_main_box_5_see_events_button">
<div class="main_content_3_events_main_box_5_arrow"></div>
</div>
</div>
<div class="main_content_3_events_main_box_6">
<p class="main_content_3_events_main_box_6_heading">CHANDRAYAN</p>
<p class="main_content_3_events_main_box_6_p_1">See Details</p>
<div class="main_content_3_events_main_box_6_photo_1"></div>
<div class="main_content_3_events_main_box_6_see_events_button">
<div class="main_content_3_events_main_box_6_arrow"></div>
</div>
</div>
<div class="box_2"></div>
</div>
<p class="main_content_3_events_scroll_p">Scroll To See More</p>
</div>
<div class="main_content_4_sponsors">
<div class="main_content_4_sponsors_top_animaiton_div">
<p class="main_content_4_sponsors_top_animaiton_div_p_1">Sponsors</p>
<p class="main_content_4_sponsors_top_animaiton_div_p_2">Sponsors</p>
</div>
<div class="main_content_4_sponsors_1">
<div class="main_content_4_sponsors_1_photo"></div>
<p class="main_content_4_sponsors_1_p">SJCIT</p>
</div>
<div class="main_content_4_sponsors_2">
<div class="main_content_4_sponsors_2_photo"></div>
<p class="main_content_4_sponsors_2_p">SJCIT AS</p>
</div>
<div class="main_content_4_sponsors_3">
<div class="main_content_4_sponsors_3_photo"></div>
<p class="main_content_4_sponsors_3_p">SOLAR CORONA ENERGY</p>
</div>
</div>
<div class="main_content_5_footer">
<div class="main_content_5_footer_top_div">
<p class="main_content_5_footer_top_div_p1">||JAI SRI GURUDEV||</p>
<p class="main_content_5_footer_top_div_p2">Sri Adichunchanagiri Shikshana Trust(R.)</p>
<p class="main_content_5_footer_top_div_p3">SJC Institute Of Technology</p>
<div class="main_content_5_footer_top_div_photo1"></div>
<div class="main_content_5_footer_top_div_photo2"></div>
</div>
<div class="main_content_5_footer_links">
<p class="main_content_5_footer_links_follow_heading">Follow</p>
<a class="fa fa-facebook" id="main_content_5_footer_links_follow_facebook"></a>
<a class="fa fa-instagram" id="main_content_5_footer_links_follow_instagram"></a>
<a class="fa fa-twitter" id="main_content_5_footer_links_follow_twitter"></a>
<a class="fa fa-youtube" id="main_content_5_footer_links_follow_youtube"></a>
<a href="#" class="main_content_5_footer_links_follow_facebook_text_link_fb">Facebook</a>
<a href="#" class="main_content_5_footer_links_follow_instagram_text_link_in">Instagram</a>
<a href="#" class="main_content_5_footer_links_follow_twitter_text_link_tw">Twitter</a>
<a href="#" class="main_content_5_footer_links_follow_youtube_text_link_yt">Youtube</a>
<p class="main_content_5_footer_links_more_heading">More</p>
<a href="#top" class="main_content_5_footer_links_more_home">Home</a>
<a href="https://sjcit.ac.in/" class="main_content_5_footer_links_more_sjcit">SJCIT</a>
<a href="#" class="main_content_5_footer_links_more_register">Register</a>
<p class="main_content_5_footer_bottom_addr_h">Address</p>
<p class="main_content_5_footer_bottom_addr_p">SJC Institute of technology<br>Chickballapur,-562101 Karnataka, India</p>
</div>
</div>
<div class="flashmob_trial" id="flash_trial" style="display:none;">
<p class="flashmob_trial_photo">FLASHMOB</p>
<p class="flash_mob_date">27 December, 2023</p>
<button class="flashmob_close" onclick="flash_mob_close(); stop_song()"><p class="flashmob_close_p">Close</p></button>
</div>
<audio id="song_play" src="house_memory.mp3"></audio>
<div class="grad_1"></div>
<div class="grad_2"></div>
<div class="grad_2_img"></div>
<script type="text/javascript">
const elements = ["main_1_head", "main_content_1_rotating_planets_with_astronaut", "main_content_2_about", "main_content_3_events", "main_content_4_sponsors"];
document.addEventListener("scroll", function(){console.log(window.scrollY);
if(window.scrollY > 300 && window.scrollY < 1700){
document.getElementById("main_content_2_about").style.opacity="1";
}
else{
document.getElementById("main_content_2_about").style.opacity="0";
}
});
function menu(){
console.log("called");
var a=document.getElementById("options")
var event_s=document.getElementById("events");
var about=document.getElementById("about");
var gall=document.getElementById("gallery");
var team=document.getElementById("team");
var reg=document.getElementById("register");
var line1=document.getElementById("menu_line_1");
var line3=document.getElementById("menu_line_3");
var back_blur=document.getElementById("main_content_1_rotating_planets_with_astronaut");
var back_blur_2=document.getElementById("flash_trial");
if(a.style.height==="0vw"){
a.style.animation="0.5s menu_box_reveal forwards";
event_s.style.animation="1s menu_reveal_events forwards";
about.style.animation="1s menu_reveal_abt forwards";
about.style.animationDelay="0.2s";
gall.style.animation="1s menu_reveal_gall forwards";
gall.style.animationDelay="0.4s";
team.style.animation="1s menu_reveal_team forwards";
team.style.animationDelay="0.6s";
reg.style.animation="1s menu_reveal_reg forwards";
reg.style.animationDelay="0.8s";
a.style.height="90vw";
line1.style.animation="0.5s menu_line_1 forwards";
line3.style.animation="0.5s menu_line_3 forwards";
back_blur.style.filter="blur(5vw)";
document.body.style.overflow="hidden";
back_blur_2.style.filter="blur(5vw)";
}
else{
event_s.style.animation=".2s menu_dereveal_events forwards";
event_s.style.animationDelay="0s";
about.style.animation="0.2s menu_dereveal_abt forwards";
about.style.animationDelay="0s";
gall.style.animation="0.2s menu_dereveal_gall forwards";
gall.style.animationDelay="0s";
team.style.animation="0.2s menu_dereveal_team forwards";
team.style.animationDelay="0s";
reg.style.animation="0.2s menu_dereveal_reg forwards";
reg.style.animationDelay="0s";
a.style.animation="0.5s menu_box_dereveal forwards";
a.style.height="0vw";
line1.style.animation="0.5s menu_line_1_renew forwards";
line3.style.animation="0.5s menu_line_3_renew forwards";
back_blur.style.filter="blur(0vw)";
document.body.style.overflow="scroll";
back_blur_2.style.filter="blur(0vw)";
}
}
function flash_mob(){
var flash=document.getElementById("flash_mob_display");
var flash_mob_page=document.getElementById("flash_trial");
var scrol=window.scrollY;
var back_blur=document.getElementById("main_content_1_rotating_planets_with_astronaut");
var back_blur_2=document.getElementById("main_content_2_about");
console.log("called2")
if(flash_mob_page.style.display==="none"){
flash_mob_page.style.display="block";
window.scrollTo({top:0,behavior:"smooth"});
back_blur.style.filter="blur(5vw)";
back_blur_2.style.filter="blur(5vw)";
}
}
function flash_mob_close(){
var flash=document.getElementById("flash_mob_display");
var flash_mob_page=document.getElementById("flash_trial");
var back_blur=document.getElementById("main_content_1_rotating_planets_with_astronaut");
var back_blur_2=document.getElementById("main_content_2_about");
if(flash_mob_page.style.display==="block"){
flash_mob_page.style.display="none";
window.scrollTo({top:1830,behavior:"smooth"});
back_blur.style.filter="blur(0vw)";
back_blur_2.style.filter="blur(0vw)";
}
}
function anm_page(){
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_block=document.getElementById("animation_change_page_inside_block");
animation_change_page.style.display="";
animation_change_page_inside_block.style.display="";
animation_change_page_inside_block.style.animation="2s page_anm_1";
}
document.getElementById("events").addEventListener('click',function(event){
event.preventDefault();
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_top=document.getElementById("animation_change_page_inside_top");
var animation_change_page_inside_bottom=document.getElementById("animation_change_page_inside_bottom");
var animation_change_page_inside_right=document.getElementById("animation_change_page_inside_right");
var animation_change_page_inside_left=document.getElementById("animation_change_page_inside_left");
animation_change_page.style.display="block";
animation_change_page_inside_top.style.display="block";
animation_change_page_inside_bottom.style.display="block";
animation_change_page_inside_left.style.display="block";
animation_change_page_inside_right.style.display="block";
animation_change_page_inside_top.style.animationName="page_anm_top, page_anm_top_full";
animation_change_page_inside_top.style.animationDuration="2s, 1s";
animation_change_page_inside_top.style.animationDelay="0s, 2s";
animation_change_page_inside_top.style.animationFillMode="forwards, forwards";
animation_change_page_inside_bottom.style.animation="2s page_anm_bottom forwards";
animation_change_page_inside_left.style.animation="2s page_anm_left forwards";
animation_change_page_inside_right.style.animation="2s page_anm_right forwards";
setTimeout(() => {
window.location.href = this.href;
}, 3000);
});
document.getElementById("team").addEventListener('click',function(event){
event.preventDefault();
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_top=document.getElementById("animation_change_page_inside_top");
var animation_change_page_inside_bottom=document.getElementById("animation_change_page_inside_bottom");
var animation_change_page_inside_right=document.getElementById("animation_change_page_inside_right");
var animation_change_page_inside_left=document.getElementById("animation_change_page_inside_left");
animation_change_page.style.display="block";
animation_change_page_inside_top.style.display="block";
animation_change_page_inside_bottom.style.display="block";
animation_change_page_inside_left.style.display="block";
animation_change_page_inside_right.style.display="block";
animation_change_page_inside_top.style.animationName="page_anm_top, page_anm_top_full";
animation_change_page_inside_top.style.animationDuration="2s, 1s";
animation_change_page_inside_top.style.animationDelay="0s, 2s";
animation_change_page_inside_top.style.animationFillMode="forwards, forwards";
animation_change_page_inside_bottom.style.animation="2s page_anm_bottom forwards";
animation_change_page_inside_left.style.animation="2s page_anm_left forwards";
animation_change_page_inside_right.style.animation="2s page_anm_right forwards";
setTimeout(() => {
window.location.href = this.href;
}, 3000);
});
document.getElementById("gallery").addEventListener('click',function(event){
event.preventDefault();
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_top=document.getElementById("animation_change_page_inside_top");
var animation_change_page_inside_bottom=document.getElementById("animation_change_page_inside_bottom");
var animation_change_page_inside_right=document.getElementById("animation_change_page_inside_right");
var animation_change_page_inside_left=document.getElementById("animation_change_page_inside_left");
animation_change_page.style.display="block";
animation_change_page_inside_top.style.display="block";
animation_change_page_inside_bottom.style.display="block";
animation_change_page_inside_left.style.display="block";
animation_change_page_inside_right.style.display="block";
animation_change_page_inside_top.style.animationName="page_anm_top, page_anm_top_full";
animation_change_page_inside_top.style.animationDuration="2s, 1s";
animation_change_page_inside_top.style.animationDelay="0s, 2s";
animation_change_page_inside_top.style.animationFillMode="forwards, forwards";
animation_change_page_inside_bottom.style.animation="2s page_anm_bottom forwards";
animation_change_page_inside_left.style.animation="2s page_anm_left forwards";
animation_change_page_inside_right.style.animation="2s page_anm_right forwards";
setTimeout(() => {
window.location.href = this.href;
}, 3000);
});
document.getElementById("main_content_3_events_main_box_1_see_events_button").addEventListener('click',function(event){
event.preventDefault();
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_top=document.getElementById("animation_change_page_inside_top");
var animation_change_page_inside_bottom=document.getElementById("animation_change_page_inside_bottom");
var animation_change_page_inside_right=document.getElementById("animation_change_page_inside_right");
var animation_change_page_inside_left=document.getElementById("animation_change_page_inside_left");
animation_change_page.style.display="block";
animation_change_page_inside_top.style.display="block";
animation_change_page_inside_bottom.style.display="block";
animation_change_page_inside_left.style.display="block";
animation_change_page_inside_right.style.display="block";
animation_change_page_inside_top.style.animationName="page_anm_top, page_anm_top_full";
animation_change_page_inside_top.style.animationDuration="2s, 1s";
animation_change_page_inside_top.style.animationDelay="0s, 2s";
animation_change_page_inside_top.style.animationFillMode="forwards, forwards";
animation_change_page_inside_bottom.style.animation="2s page_anm_bottom forwards";
animation_change_page_inside_left.style.animation="2s page_anm_left forwards";
animation_change_page_inside_right.style.animation="2s page_anm_right forwards";
setTimeout(() => {
window.location.href = this.href;
}, 3000);
});
document.getElementById("main_content_3_events_main_box_1_see_events_button").addEventListener('click',function(event){
event.preventDefault();
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_top=document.getElementById("animation_change_page_inside_top");
var animation_change_page_inside_bottom=document.getElementById("animation_change_page_inside_bottom");
var animation_change_page_inside_right=document.getElementById("animation_change_page_inside_right");
var animation_change_page_inside_left=document.getElementById("animation_change_page_inside_left");
animation_change_page.style.display="block";
animation_change_page_inside_top.style.display="block";
animation_change_page_inside_bottom.style.display="block";
animation_change_page_inside_left.style.display="block";
animation_change_page_inside_right.style.display="block";
animation_change_page_inside_top.style.animationName="page_anm_top, page_anm_top_full";
animation_change_page_inside_top.style.animationDuration="2s, 1s";
animation_change_page_inside_top.style.animationDelay="0s, 2s";
animation_change_page_inside_top.style.animationFillMode="forwards, forwards";
animation_change_page_inside_bottom.style.animation="2s page_anm_bottom forwards";
animation_change_page_inside_left.style.animation="2s page_anm_left forwards";
animation_change_page_inside_right.style.animation="2s page_anm_right forwards";
setTimeout(() => {
window.location.href = this.href;
}, 3000);
});
document.getElementById("main_content_3_events_main_box_2_see_events_button").addEventListener('click',function(event){
event.preventDefault();
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_top=document.getElementById("animation_change_page_inside_top");
var animation_change_page_inside_bottom=document.getElementById("animation_change_page_inside_bottom");
var animation_change_page_inside_right=document.getElementById("animation_change_page_inside_right");
var animation_change_page_inside_left=document.getElementById("animation_change_page_inside_left");
animation_change_page.style.display="block";
animation_change_page_inside_top.style.display="block";
animation_change_page_inside_bottom.style.display="block";
animation_change_page_inside_left.style.display="block";
animation_change_page_inside_right.style.display="block";
animation_change_page_inside_top.style.animationName="page_anm_top, page_anm_top_full";
animation_change_page_inside_top.style.animationDuration="2s, 1s";
animation_change_page_inside_top.style.animationDelay="0s, 2s";
animation_change_page_inside_top.style.animationFillMode="forwards, forwards";
animation_change_page_inside_bottom.style.animation="2s page_anm_bottom forwards";
animation_change_page_inside_left.style.animation="2s page_anm_left forwards";
animation_change_page_inside_right.style.animation="2s page_anm_right forwards";
setTimeout(() => {
window.location.href = this.href;
}, 3000);
});
document.getElementById("register").addEventListener('click',function(event){
event.preventDefault();
var animation_change_page=document.getElementById("animation_change_page");
var animation_change_page_inside_top=document.getElementById("animation_change_page_inside_top");
var animation_change_page_inside_bottom=document.getElementById("animation_change_page_inside_bottom");
var animation_change_page_inside_right=document.getElementById("animation_change_page_inside_right");
var animation_change_page_inside_left=document.getElementById("animation_change_page_inside_left");
animation_change_page.style.display="block";
animation_change_page_inside_top.style.display="block";
animation_change_page_inside_bottom.style.display="block";
animation_change_page_inside_left.style.display="block";
animation_change_page_inside_right.style.display="block";
animation_change_page_inside_top.style.animationName="page_anm_top, page_anm_top_full";
animation_change_page_inside_top.style.animationDuration="2s, 1s";
animation_change_page_inside_top.style.animationDelay="0s, 2s";
animation_change_page_inside_top.style.animationFillMode="forwards, forwards";
animation_change_page_inside_bottom.style.animation="2s page_anm_bottom forwards";
animation_change_page_inside_left.style.animation="2s page_anm_left forwards";
animation_change_page_inside_right.style.animation="2s page_anm_right forwards";
setTimeout(() => {
window.location.href = this.href;
}, 3000);
});
function play_song(){
var play_song=document.getElementById("song_play");
play_song.play();
}
function stop_song(){
var stop_song=document.getElementById("song_play");
stop_song.pause();
stop_song.currentTime=0;
}
</script>
</body>
</html>