-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMMM-CSSBackgrounds.css
More file actions
3022 lines (2828 loc) · 121 KB
/
MMM-CSSBackgrounds.css
File metadata and controls
3022 lines (2828 loc) · 121 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Standards */
html, body {
height: 100%;
}
html {
height: 100%;
background-color:#090a0f;
/* for images with gradient overlay use: (adjust the gradient ".08" for lighter use lower i.e: 0.3 / or darker go higher i.e: 0.9) */
/*
background: radial-gradient(ellipse at bottom, rgba(17, 29, 43, 0.8), rgba(9, 10, 15, 0.8)), url('path_to_your_image');
background-repeat:no-repeat;
background-size:cover;
*/
background: radial-gradient(ellipse at bottom, rgba(17, 29, 43, 1), rgba(9, 10, 15, 1));
overflow: hidden;
}
body {
overflow:hidden;
margin:0;
background: transparent;
}
/* Set all colors to be pure white to assist with any color issues */
.dimmed,.normal,.bright, * {color:#fff !IMPORTANT;}
header {border-bottom: 1px solid #ffffff;}
/*
Floating Particles by Envato Tuts https://codepen.io/tutsplus/pen/MrjYJK
*/
html.particles #particle-container {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
html.particles .particle {
position: absolute;
border-radius: 50%;
}
@keyframes particle-animation-1 {
100% {
transform: translate3d(79vw, 25vh, 23px);
}
}
html.particles .particle:nth-child(1) {
animation: particle-animation-1 60s infinite;
opacity: 0.11;
height: 7px;
width: 7px;
animation-delay: -0.2s;
transform: translate3d(63vw, 21vh, 50px);
background: #d92629;
}
@keyframes particle-animation-2 {
100% {
transform: translate3d(56vw, 13vh, 50px);
}
}
html.particles .particle:nth-child(2) {
animation: particle-animation-2 60s infinite;
opacity: 0.55;
height: 6px;
width: 6px;
animation-delay: -0.4s;
transform: translate3d(68vw, 56vh, 26px);
background: #264ad9;
}
@keyframes particle-animation-3 {
100% {
transform: translate3d(80vw, 20vh, 87px);
}
}
html.particles .particle:nth-child(3) {
animation: particle-animation-3 60s infinite;
opacity: 0.79;
height: 7px;
width: 7px;
animation-delay: -0.6s;
transform: translate3d(69vw, 2vh, 23px);
background: #d926b8;
}
@keyframes particle-animation-4 {
100% {
transform: translate3d(65vw, 5vh, 96px);
}
}
html.particles .particle:nth-child(4) {
animation: particle-animation-4 60s infinite;
opacity: 0.39;
height: 6px;
width: 6px;
animation-delay: -0.8s;
transform: translate3d(28vw, 47vh, 27px);
background: #266bd9;
}
@keyframes particle-animation-5 {
100% {
transform: translate3d(37vw, 54vh, 17px);
}
}
html.particles .particle:nth-child(5) {
animation: particle-animation-5 60s infinite;
opacity: 0.19;
height: 10px;
width: 10px;
animation-delay: -1s;
transform: translate3d(82vw, 27vh, 58px);
background: #d926d3;
}
@keyframes particle-animation-6 {
100% {
transform: translate3d(2vw, 2vh, 60px);
}
}
html.particles .particle:nth-child(6) {
animation: particle-animation-6 60s infinite;
opacity: 0.36;
height: 7px;
width: 7px;
animation-delay: -1.2s;
transform: translate3d(43vw, 69vh, 34px);
background: #269dd9;
}
@keyframes particle-animation-7 {
100% {
transform: translate3d(52vw, 36vh, 90px);
}
}
html.particles .particle:nth-child(7) {
animation: particle-animation-7 60s infinite;
opacity: 0.09;
height: 9px;
width: 9px;
animation-delay: -1.4s;
transform: translate3d(27vw, 14vh, 53px);
background: #26d9a0;
}
@keyframes particle-animation-8 {
100% {
transform: translate3d(14vw, 20vh, 79px);
}
}
html.particles .particle:nth-child(8) {
animation: particle-animation-8 60s infinite;
opacity: 0.3;
height: 9px;
width: 9px;
animation-delay: -1.6s;
transform: translate3d(78vw, 34vh, 43px);
background: #264dd9;
}
@keyframes particle-animation-9 {
100% {
transform: translate3d(88vw, 44vh, 7px);
}
}
html.particles .particle:nth-child(9) {
animation: particle-animation-9 60s infinite;
opacity: 0.76;
height: 8px;
width: 8px;
animation-delay: -1.8s;
transform: translate3d(73vw, 21vh, 71px);
background: #d93526;
}
@keyframes particle-animation-10 {
100% {
transform: translate3d(30vw, 16vh, 61px);
}
}
html.particles .particle:nth-child(10) {
animation: particle-animation-10 60s infinite;
opacity: 0.31;
height: 8px;
width: 8px;
animation-delay: -2s;
transform: translate3d(87vw, 33vh, 79px);
background: #d9262f;
}
@keyframes particle-animation-11 {
100% {
transform: translate3d(15vw, 42vh, 87px);
}
}
html.particles .particle:nth-child(11) {
animation: particle-animation-11 60s infinite;
opacity: 0.25;
height: 6px;
width: 6px;
animation-delay: -2.2s;
transform: translate3d(52vw, 53vh, 83px);
background: #74d926;
}
@keyframes particle-animation-12 {
100% {
transform: translate3d(39vw, 39vh, 74px);
}
}
html.particles .particle:nth-child(12) {
animation: particle-animation-12 60s infinite;
opacity: 0.03;
height: 7px;
width: 7px;
animation-delay: -2.4s;
transform: translate3d(69vw, 33vh, 69px);
background: #26d9d0;
}
@keyframes particle-animation-13 {
100% {
transform: translate3d(77vw, 77vh, 92px);
}
}
html.particles .particle:nth-child(13) {
animation: particle-animation-13 60s infinite;
opacity: 0.41;
height: 7px;
width: 7px;
animation-delay: -2.6s;
transform: translate3d(50vw, 46vh, 82px);
background: #26d97d;
}
@keyframes particle-animation-14 {
100% {
transform: translate3d(88vw, 49vh, 82px);
}
}
html.particles .particle:nth-child(14) {
animation: particle-animation-14 60s infinite;
opacity: 0.28;
height: 6px;
width: 6px;
animation-delay: -2.8s;
transform: translate3d(53vw, 78vh, 47px);
background: #26d988;
}
@keyframes particle-animation-15 {
100% {
transform: translate3d(90vw, 1vh, 67px);
}
}
html.particles .particle:nth-child(15) {
animation: particle-animation-15 60s infinite;
opacity: 0.34;
height: 8px;
width: 8px;
animation-delay: -3s;
transform: translate3d(41vw, 59vh, 51px);
background: #9126d9;
}
@keyframes particle-animation-16 {
100% {
transform: translate3d(51vw, 47vh, 15px);
}
}
html.particles .particle:nth-child(16) {
animation: particle-animation-16 60s infinite;
opacity: 0.21;
height: 7px;
width: 7px;
animation-delay: -3.2s;
transform: translate3d(42vw, 29vh, 44px);
background: #d9263b;
}
@keyframes particle-animation-17 {
100% {
transform: translate3d(8vw, 39vh, 34px);
}
}
html.particles .particle:nth-child(17) {
animation: particle-animation-17 60s infinite;
opacity: 0.55;
height: 7px;
width: 7px;
animation-delay: -3.4s;
transform: translate3d(42vw, 85vh, 78px);
background: #26d938;
}
@keyframes particle-animation-18 {
100% {
transform: translate3d(66vw, 28vh, 82px);
}
}
html.particles .particle:nth-child(18) {
animation: particle-animation-18 60s infinite;
opacity: 0.91;
height: 9px;
width: 9px;
animation-delay: -3.6s;
transform: translate3d(36vw, 55vh, 11px);
background: #d9264d;
}
@keyframes particle-animation-19 {
100% {
transform: translate3d(43vw, 19vh, 75px);
}
}
html.particles .particle:nth-child(19) {
animation: particle-animation-19 60s infinite;
opacity: 0.97;
height: 8px;
width: 8px;
animation-delay: -3.8s;
transform: translate3d(78vw, 17vh, 76px);
background: #8ed926;
}
@keyframes particle-animation-20 {
100% {
transform: translate3d(29vw, 87vh, 7px);
}
}
html.particles .particle:nth-child(20) {
animation: particle-animation-20 60s infinite;
opacity: 0.4;
height: 10px;
width: 10px;
animation-delay: -4s;
transform: translate3d(44vw, 17vh, 26px);
background: #29d926;
}
@keyframes particle-animation-21 {
100% {
transform: translate3d(71vw, 73vh, 93px);
}
}
html.particles .particle:nth-child(21) {
animation: particle-animation-21 60s infinite;
opacity: 0.93;
height: 7px;
width: 7px;
animation-delay: -4.2s;
transform: translate3d(27vw, 58vh, 66px);
background: #a0d926;
}
@keyframes particle-animation-22 {
100% {
transform: translate3d(69vw, 85vh, 85px);
}
}
html.particles .particle:nth-child(22) {
animation: particle-animation-22 60s infinite;
opacity: 0.49;
height: 9px;
width: 9px;
animation-delay: -4.4s;
transform: translate3d(8vw, 10vh, 15px);
background: #d9d926;
}
@keyframes particle-animation-23 {
100% {
transform: translate3d(23vw, 74vh, 32px);
}
}
html.particles .particle:nth-child(23) {
animation: particle-animation-23 60s infinite;
opacity: 0.9;
height: 6px;
width: 6px;
animation-delay: -4.6s;
transform: translate3d(44vw, 51vh, 62px);
background: #264ad9;
}
@keyframes particle-animation-24 {
100% {
transform: translate3d(39vw, 43vh, 95px);
}
}
html.particles .particle:nth-child(24) {
animation: particle-animation-24 60s infinite;
opacity: 0.82;
height: 8px;
width: 8px;
animation-delay: -4.8s;
transform: translate3d(55vw, 85vh, 48px);
background: #d92685;
}
@keyframes particle-animation-25 {
100% {
transform: translate3d(89vw, 17vh, 32px);
}
}
html.particles .particle:nth-child(25) {
animation: particle-animation-25 60s infinite;
opacity: 0.14;
height: 8px;
width: 8px;
animation-delay: -5s;
transform: translate3d(54vw, 57vh, 77px);
background: #d92635;
}
@keyframes particle-animation-26 {
100% {
transform: translate3d(48vw, 41vh, 24px);
}
}
html.particles .particle:nth-child(26) {
animation: particle-animation-26 60s infinite;
opacity: 0.35;
height: 6px;
width: 6px;
animation-delay: -5.2s;
transform: translate3d(78vw, 84vh, 92px);
background: #268ed9;
}
@keyframes particle-animation-27 {
100% {
transform: translate3d(58vw, 16vh, 17px);
}
}
html.particles .particle:nth-child(27) {
animation: particle-animation-27 60s infinite;
opacity: 0.11;
height: 9px;
width: 9px;
animation-delay: -5.4s;
transform: translate3d(8vw, 18vh, 56px);
background: #9d26d9;
}
@keyframes particle-animation-28 {
100% {
transform: translate3d(68vw, 19vh, 33px);
}
}
html.particles .particle:nth-child(28) {
animation: particle-animation-28 60s infinite;
opacity: 0.52;
height: 8px;
width: 8px;
animation-delay: -5.6s;
transform: translate3d(33vw, 46vh, 4px);
background: #26d965;
}
@keyframes particle-animation-29 {
100% {
transform: translate3d(13vw, 16vh, 53px);
}
}
html.particles .particle:nth-child(29) {
animation: particle-animation-29 60s infinite;
opacity: 0.22;
height: 8px;
width: 8px;
animation-delay: -5.8s;
transform: translate3d(9vw, 76vh, 90px);
background: #85d926;
}
@keyframes particle-animation-30 {
100% {
transform: translate3d(60vw, 14vh, 97px);
}
}
html.particles .particle:nth-child(30) {
animation: particle-animation-30 60s infinite;
opacity: 0.62;
height: 8px;
width: 8px;
animation-delay: -6s;
transform: translate3d(56vw, 59vh, 100px);
background: #267dd9;
}
/*
Rising Particles by Robin Selmer https://codepen.io/robinselmer/pen/mRjoXr
*/
html.risingparticles .animation-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
html.risingparticles .particle,
html.risingparticles .particle:after {
background: transparent;
}
html.risingparticles .particle:after {
position: absolute;
content: "";
top: 2560px;
}
html.risingparticles .particle-1 {
-webkit-animation: animParticle 60s linear infinite;
animation: animParticle 60s linear infinite;
box-shadow: 0px 0px #fff, 1790px 407px #fff, 831px 1139px #fff, 1669px 2109px #fff, 1603px 410px #fff, 1618px 1778px #fff, 180px 1392px #fff, 595px 1474px #fff, 1003px 155px #fff, 1318px 1807px #fff, 540px 1413px #fff, 1695px 1623px #fff, 307px 1788px #fff, 2217px 1762px #fff, 1629px 1119px #fff, 489px 2342px #fff, 2354px 274px #fff, 342px 2417px #fff, 1245px 1639px #fff, 2323px 715px #fff, 1141px 882px #fff, 2018px 2423px #fff, 1950px 1503px #fff, 766px 226px #fff, 1762px 348px #fff, 1548px 2364px #fff, 2350px 2317px #fff, 1632px 1599px #fff, 1167px 627px #fff, 2340px 593px #fff, 140px 1642px #fff, 724px 1796px #fff, 1136px 2083px #fff, 2388px 2090px #fff, 1314px 2370px #fff, 2276px 2326px #fff, 594px 1823px #fff, 2358px 2194px #fff, 1289px 171px #fff, 2106px 1498px #fff, 1187px 1321px #fff, 743px 2410px #fff, 250px 1399px #fff, 2316px 1997px #fff, 347px 84px #fff, 198px 978px #fff, 1336px 1018px #fff, 2536px 31px #fff, 2335px 2192px #fff, 1935px 352px #fff, 2285px 874px #fff, 825px 624px #fff, 599px 1025px #fff, 1644px 801px #fff, 1501px 1392px #fff, 1981px 1974px #fff, 309px 1349px #fff, 710px 2405px #fff, 627px 2211px #fff, 1096px 1893px #fff, 2388px 2269px #fff, 959px 2500px #fff, 467px 2205px #fff, 464px 1600px #fff, 2507px 1167px #fff, 1165px 2203px #fff, 1724px 1488px #fff, 2525px 79px #fff, 178px 354px #fff, 791px 225px #fff, 2337px 2102px #fff, 1496px 1874px #fff, 1883px 249px #fff, 974px 1496px #fff, 355px 163px #fff, 2511px 1667px #fff, 488px 728px #fff, 1153px 1979px #fff, 1247px 2287px #fff, 16px 627px #fff, 718px 248px #fff, 1768px 767px #fff, 2011px 1555px #fff, 1070px 2142px #fff, 153px 2458px #fff, 2018px 1284px #fff, 107px 2517px #fff, 980px 366px #fff, 628px 2517px #fff, 1163px 1042px #fff, 2504px 2383px #fff, 2208px 1695px #fff, 1760px 99px #fff, 1537px 975px #fff, 431px 306px #fff, 2001px 959px #fff, 2353px 1943px #fff, 1093px 1453px #fff, 2506px 1134px #fff, 1251px 802px #fff, 467px 1477px #fff, 187px 1873px #fff, 2151px 906px #fff, 2175px 2356px #fff, 366px 1707px #fff, 2320px 2131px #fff, 312px 1915px #fff, 1329px 2042px #fff, 1013px 847px #fff, 643px 899px #fff, 657px 2238px #fff, 391px 1622px #fff, 788px 1425px #fff, 1674px 1873px #fff, 1416px 650px #fff, 2512px 1191px #fff, 159px 1277px #fff, 648px 2055px #fff, 2096px 2078px #fff, 2283px 47px #fff, 619px 2246px #fff, 580px 2218px #fff, 1232px 643px #fff, 1204px 2499px #fff, 1924px 691px #fff, 647px 1375px #fff, 408px 1920px #fff, 2142px 2087px #fff, 2499px 1732px #fff, 1205px 2189px #fff, 1783px 246px #fff, 169px 1894px #fff, 2543px 1090px #fff, 884px 262px #fff, 1337px 2390px #fff, 2131px 1003px #fff, 2082px 2069px #fff, 432px 2287px #fff, 164px 1968px #fff, 964px 1246px #fff, 1980px 895px #fff, 2544px 130px #fff, 1290px 1001px #fff, 1040px 1376px #fff, 655px 540px #fff, 1478px 2257px #fff, 1624px 1566px #fff, 1123px 1827px #fff, 988px 2379px #fff, 499px 23px #fff, 1476px 146px #fff, 1366px 1793px #fff, 969px 978px #fff, 186px 2419px #fff, 711px 503px #fff, 2171px 2402px #fff, 1680px 2356px #fff, 557px 2453px #fff, 151px 1098px #fff, 867px 1326px #fff, 610px 1293px #fff, 843px 1878px #fff, 1271px 302px #fff, 544px 111px #fff, 2119px 51px #fff, 2317px 1826px #fff, 110px 2174px #fff, 1680px 1614px #fff, 1131px 506px #fff, 1774px 480px #fff, 2092px 969px #fff, 1615px 1780px #fff, 1686px 2073px #fff, 1646px 1264px #fff, 702px 530px #fff, 1855px 1578px #fff, 2107px 774px #fff, 1783px 371px #fff, 1136px 1515px #fff, 777px 2061px #fff, 42px 2175px #fff, 1640px 1566px #fff, 237px 2540px #fff, 462px 1606px #fff, 601px 31px #fff, 875px 2443px #fff, 1203px 1123px #fff, 1171px 1971px #fff, 514px 1552px #fff, 1967px 808px #fff, 9px 2479px #fff, 663px 1175px #fff, 1408px 1770px #fff, 1442px 617px #fff, 901px 1970px #fff, 1564px 2170px #fff, 474px 2379px #fff, 264px 2172px #fff, 1555px 1772px #fff, 2245px 1683px #fff, 1848px 1400px #fff, 2349px 628px #fff, 215px 577px #fff, 898px 2034px #fff, 289px 1052px #fff, 207px 575px #fff, 465px 24px #fff, 1317px 62px #fff, 121px 2484px #fff, 1212px 2252px #fff, 404px 126px #fff, 2023px 1845px #fff, 1285px 749px #fff, 1854px 1975px #fff, 1311px 411px #fff, 943px 1238px #fff, 1743px 1970px #fff, 997px 2096px #fff, 1315px 43px #fff, 1604px 1630px #fff, 716px 1988px #fff, 705px 815px #fff, 2138px 115px #fff, 2511px 248px #fff, 1873px 1180px #fff, 927px 2260px #fff, 1165px 1228px #fff, 2287px 1951px #fff, 1083px 1173px #fff, 260px 1832px #fff, 988px 2505px #fff, 284px 1492px #fff, 404px 1698px #fff, 2472px 909px #fff, 996px 731px #fff, 2441px 1608px #fff, 1301px 2232px #fff, 1795px 2302px #fff, 2221px 405px #fff, 1162px 1372px #fff, 1077px 1377px #fff, 1882px 1820px #fff, 1527px 1653px #fff, 1506px 2260px #fff, 1387px 2333px #fff, 226px 1240px #fff, 632px 1414px #fff, 806px 2191px #fff, 807px 2303px #fff, 1854px 1381px #fff, 2032px 533px #fff, 2204px 611px #fff, 2371px 2516px #fff, 1752px 444px #fff, 286px 1302px #fff, 2539px 1369px #fff, 1603px 57px #fff, 2254px 246px #fff, 446px 1550px #fff, 1923px 183px #fff, 1615px 2014px #fff, 1403px 2248px #fff, 131px 2454px #fff, 316px 263px #fff, 1530px 1591px #fff, 836px 1445px #fff, 1592px 476px #fff, 2001px 817px #fff, 547px 304px #fff, 1182px 123px #fff, 590px 1226px #fff, 1865px 2121px #fff, 1162px 2243px #fff, 1907px 1150px #fff, 203px 2191px #fff, 392px 653px #fff, 1888px 113px #fff, 2077px 15px #fff, 1269px 106px #fff, 1078px 135px #fff, 570px 1005px #fff, 1609px 1009px #fff, 1109px 2428px #fff, 730px 468px #fff, 827px 2113px #fff, 2087px 1538px #fff, 1645px 227px #fff, 196px 1951px #fff, 1956px 2434px #fff, 2453px 386px #fff, 1329px 1879px #fff, 2485px 1650px #fff, 1497px 1368px #fff, 2410px 724px #fff, 581px 1379px #fff, 963px 854px #fff, 33px 716px #fff, 1517px 1474px #fff, 1693px 2470px #fff, 536px 2084px #fff, 815px 2213px #fff;
height: 1px;
width: 1px;
}
html.risingparticles .particle-1:after {
box-shadow: 0px 0px #fff, 558px 2483px #fff, 2306px 125px #fff, 886px 894px #fff, 2308px 157px #fff, 1787px 103px #fff, 2322px 1413px #fff, 1639px 1203px #fff, 1758px 1638px #fff, 1194px 1788px #fff, 61px 1914px #fff, 524px 1086px #fff, 977px 803px #fff, 119px 391px #fff, 1851px 11px #fff, 2100px 1614px #fff, 839px 198px #fff, 1396px 1147px #fff, 1665px 620px #fff, 452px 1868px #fff, 1915px 2185px #fff, 677px 1361px #fff, 603px 1474px #fff, 1473px 547px #fff, 1581px 1550px #fff, 865px 1356px #fff, 1267px 720px #fff, 791px 1800px #fff, 16px 565px #fff, 2248px 657px #fff, 2405px 115px #fff, 2268px 1433px #fff, 1040px 529px #fff, 1798px 1124px #fff, 1863px 1880px #fff, 1006px 1276px #fff, 1189px 1145px #fff, 1875px 254px #fff, 595px 1530px #fff, 1230px 432px #fff, 1015px 268px #fff, 372px 4px #fff, 600px 1930px #fff, 772px 2305px #fff, 2488px 1062px #fff, 711px 1008px #fff, 1695px 285px #fff, 1363px 2075px #fff, 320px 118px #fff, 1173px 1323px #fff, 1888px 886px #fff, 1899px 1338px #fff, 1689px 556px #fff, 2270px 1218px #fff, 556px 1207px #fff, 253px 913px #fff, 1966px 679px #fff, 2378px 388px #fff, 1499px 1981px #fff, 2042px 941px #fff, 2165px 1510px #fff, 1306px 78px #fff, 1276px 1830px #fff, 2361px 197px #fff, 1965px 105px #fff, 435px 1203px #fff, 892px 1836px #fff, 1702px 1064px #fff, 2395px 545px #fff, 2326px 2018px #fff, 549px 2222px #fff, 2097px 928px #fff, 1008px 1420px #fff, 2534px 1498px #fff, 1454px 1188px #fff, 1482px 1277px #fff, 1948px 2249px #fff, 2325px 609px #fff, 1251px 65px #fff, 1053px 823px #fff, 269px 2139px #fff, 167px 1506px #fff, 287px 69px #fff, 686px 2474px #fff, 1067px 2197px #fff, 113px 603px #fff, 1198px 1859px #fff, 623px 2320px #fff, 57px 923px #fff, 143px 960px #fff, 1777px 122px #fff, 200px 1908px #fff, 621px 1908px #fff, 1128px 1186px #fff, 375px 93px #fff, 2092px 983px #fff, 2325px 114px #fff, 1635px 1140px #fff, 972px 790px #fff, 207px 635px #fff, 2365px 2333px #fff, 1554px 1477px #fff, 819px 1326px #fff, 1217px 2534px #fff, 2443px 1927px #fff, 1214px 1954px #fff, 213px 173px #fff, 1484px 1152px #fff, 2308px 2494px #fff, 786px 1396px #fff, 927px 1648px #fff, 658px 1321px #fff, 204px 541px #fff, 2372px 817px #fff, 1498px 898px #fff, 2268px 1277px #fff, 1160px 845px #fff, 1382px 1498px #fff, 814px 1108px #fff, 1242px 2209px #fff, 1910px 1510px #fff, 1814px 1309px #fff, 2229px 1667px #fff, 424px 869px #fff, 585px 538px #fff, 2519px 474px #fff, 973px 2059px #fff, 1256px 1202px #fff, 1617px 1254px #fff, 1610px 685px #fff, 1907px 1912px #fff, 2445px 262px #fff, 1228px 2429px #fff, 1064px 1527px #fff, 812px 506px #fff, 1890px 1706px #fff, 1500px 294px #fff, 922px 1446px #fff, 781px 1964px #fff, 303px 568px #fff, 381px 1379px #fff, 2048px 1160px #fff, 2374px 319px #fff, 2492px 1668px #fff, 1595px 1284px #fff, 1497px 521px #fff, 841px 158px #fff, 431px 192px #fff, 29px 1902px #fff, 1751px 243px #fff, 1px 1443px #fff, 25px 1661px #fff, 1294px 1493px #fff, 127px 2270px #fff, 1551px 1541px #fff, 525px 1430px #fff, 496px 217px #fff, 2513px 2372px #fff, 1405px 1312px #fff, 548px 1568px #fff, 1910px 1300px #fff, 2502px 161px #fff, 575px 894px #fff, 2185px 929px #fff, 2406px 532px #fff, 2129px 1704px #fff, 200px 2222px #fff, 1139px 2512px #fff, 760px 2349px #fff, 1128px 867px #fff, 1077px 1192px #fff, 1817px 210px #fff, 873px 1213px #fff, 616px 1752px #fff, 916px 403px #fff, 123px 614px #fff, 379px 2304px #fff, 1555px 560px #fff, 2552px 1050px #fff, 614px 1156px #fff, 1046px 279px #fff, 1565px 1718px #fff, 2076px 462px #fff, 858px 565px #fff, 402px 458px #fff, 599px 364px #fff, 2113px 1598px #fff, 939px 2439px #fff, 680px 978px #fff, 1196px 2385px #fff, 256px 242px #fff, 341px 824px #fff, 812px 2243px #fff, 2213px 1254px #fff, 183px 2284px #fff, 1620px 1750px #fff, 749px 2452px #fff, 489px 1701px #fff, 25px 2253px #fff, 540px 311px #fff, 971px 1183px #fff, 1363px 1509px #fff, 7px 1686px #fff, 95px 2302px #fff, 132px 996px #fff, 1522px 1970px #fff, 501px 504px #fff, 1233px 187px #fff, 1686px 2529px #fff, 1358px 1231px #fff, 2074px 1440px #fff, 2122px 1909px #fff, 1899px 1635px #fff, 2217px 565px #fff, 937px 1931px #fff, 2409px 2313px #fff, 37px 808px #fff, 806px 1529px #fff, 1094px 779px #fff, 1200px 754px #fff, 2290px 1574px #fff, 2092px 12px #fff, 1927px 1143px #fff, 2337px 477px #fff, 280px 1923px #fff, 220px 52px #fff, 2161px 389px #fff, 2443px 1867px #fff, 1115px 1996px #fff, 2483px 2428px #fff, 2370px 978px #fff, 1040px 585px #fff, 1059px 2408px #fff, 2150px 242px #fff, 11px 1789px #fff, 1453px 1139px #fff, 1313px 2401px #fff, 1145px 616px #fff, 1468px 2293px #fff, 641px 2528px #fff, 61px 1984px #fff, 961px 2088px #fff, 239px 1025px #fff, 1043px 923px #fff, 620px 703px #fff, 1231px 108px #fff, 1850px 1783px #fff, 596px 2032px #fff, 2289px 2443px #fff, 1693px 2048px #fff, 483px 490px #fff, 1976px 1847px #fff, 1015px 1351px #fff, 233px 2450px #fff, 346px 822px #fff, 1872px 1146px #fff, 1577px 1528px #fff, 2376px 320px #fff, 2260px 2083px #fff, 894px 1635px #fff, 243px 2331px #fff, 2464px 1941px #fff, 2489px 1948px #fff, 1453px 2375px #fff, 121px 2311px #fff, 785px 364px #fff, 1113px 1172px #fff, 643px 1786px #fff, 1096px 1563px #fff, 1914px 1353px #fff, 712px 1206px #fff, 2440px 2449px #fff, 722px 859px #fff, 1862px 210px #fff, 1774px 1774px #fff, 432px 805px #fff, 478px 1488px #fff, 2354px 404px #fff, 1384px 706px #fff, 1387px 1578px #fff, 412px 327px #fff, 1098px 219px #fff, 460px 349px #fff, 713px 1193px #fff, 2091px 1177px #fff, 466px 1989px #fff, 258px 126px #fff, 77px 1527px #fff, 2206px 1120px #fff, 1216px 471px #fff, 1089px 91px #fff, 760px 639px #fff, 1465px 535px #fff, 1889px 2531px #fff, 238px 2444px #fff, 2458px 635px #fff, 1204px 1052px #fff, 2045px 812px #fff, 1144px 925px #fff, 2381px 1827px #fff, 2466px 543px #fff;
height: 1px;
width: 1px;
}
html.risingparticles .particle-2 {
-webkit-animation: animParticle 120s linear infinite;
animation: animParticle 120s linear infinite;
box-shadow: 0px 0px #fff, 1603px 1841px #fff, 2242px 2105px #fff, 2424px 660px #fff, 1114px 1535px #fff, 2024px 1535px #fff, 1071px 449px #fff, 235px 159px #fff, 1407px 715px #fff, 560px 2131px #fff, 329px 506px #fff, 1635px 145px #fff, 1396px 2471px #fff, 2320px 193px #fff, 786px 1417px #fff, 922px 2444px #fff, 1247px 2418px #fff, 444px 1544px #fff, 2510px 785px #fff, 53px 263px #fff, 1042px 428px #fff, 2143px 2521px #fff, 2329px 1834px #fff, 1859px 1864px #fff, 1705px 1527px #fff, 1793px 430px #fff, 2094px 1854px #fff, 1809px 1308px #fff, 1256px 1893px #fff, 94px 1181px #fff, 2298px 2364px #fff, 1690px 230px #fff, 719px 1785px #fff, 715px 550px #fff, 424px 1095px #fff, 1695px 596px #fff, 1982px 939px #fff, 719px 312px #fff, 213px 691px #fff, 1402px 2451px #fff, 1408px 2400px #fff, 1018px 536px #fff, 2450px 1260px #fff, 1891px 1585px #fff, 1095px 186px #fff, 578px 2399px #fff, 2123px 393px #fff, 872px 433px #fff, 664px 1655px #fff, 1145px 929px #fff, 323px 839px #fff, 1694px 1477px #fff, 2418px 348px #fff, 2426px 1725px #fff, 1912px 2126px #fff, 2497px 334px #fff, 293px 1366px #fff, 2072px 2370px #fff, 1637px 1915px #fff, 1316px 710px #fff, 1571px 49px #fff, 830px 1305px #fff, 489px 2213px #fff, 359px 1787px #fff, 877px 252px #fff, 1030px 366px #fff, 531px 214px #fff, 1025px 1169px #fff, 2418px 1684px #fff, 1970px 509px #fff, 1341px 436px #fff, 2012px 1604px #fff, 1008px 101px #fff, 1317px 1106px #fff, 2310px 2545px #fff, 1478px 559px #fff, 158px 1627px #fff, 2042px 1473px #fff, 453px 1055px #fff, 880px 99px #fff, 2182px 1077px #fff, 1297px 915px #fff, 272px 2096px #fff, 1275px 1217px #fff, 998px 638px #fff, 117px 512px #fff, 2051px 990px #fff, 493px 1833px #fff, 580px 1941px #fff, 765px 611px #fff, 1014px 1822px #fff, 1520px 1255px #fff, 300px 1511px #fff, 2175px 1926px #fff, 1158px 2284px #fff, 2334px 836px #fff, 2049px 157px #fff, 51px 2021px #fff, 1419px 1376px #fff, 563px 1466px #fff, 1299px 136px #fff;
height: 2px;
width: 2px;
}
html.risingparticles .particle-2:after {
box-shadow: 0px 0px #fff, 259px 2163px #fff, 1990px 237px #fff, 265px 2513px #fff, 2535px 1776px #fff, 870px 1744px #fff, 1043px 616px #fff, 1208px 1187px #fff, 207px 2314px #fff, 2538px 204px #fff, 1651px 316px #fff, 718px 109px #fff, 704px 1491px #fff, 967px 232px #fff, 1739px 444px #fff, 197px 1645px #fff, 2124px 2467px #fff, 2523px 1151px #fff, 2468px 759px #fff, 1088px 119px #fff, 849px 1087px #fff, 1458px 664px #fff, 1927px 236px #fff, 865px 169px #fff, 1765px 1987px #fff, 2113px 1870px #fff, 1888px 1494px #fff, 1428px 1717px #fff, 1135px 86px #fff, 2010px 1288px #fff, 639px 344px #fff, 2294px 1932px #fff, 1078px 1181px #fff, 2108px 154px #fff, 219px 924px #fff, 1818px 1726px #fff, 529px 1102px #fff, 366px 1029px #fff, 1368px 749px #fff, 480px 278px #fff, 264px 438px #fff, 369px 2210px #fff, 2545px 1426px #fff, 291px 781px #fff, 1808px 337px #fff, 1321px 2018px #fff, 104px 1662px #fff, 275px 928px #fff, 2136px 2180px #fff, 999px 2399px #fff, 1489px 871px #fff, 2072px 728px #fff, 1581px 1744px #fff, 2533px 125px #fff, 2088px 1097px #fff, 1409px 72px #fff, 1619px 1573px #fff, 1092px 2206px #fff, 563px 1807px #fff, 1735px 486px #fff, 1208px 2204px #fff, 1390px 1026px #fff, 1490px 383px #fff, 1551px 1921px #fff, 1015px 1046px #fff, 1050px 51px #fff, 335px 2225px #fff, 1929px 2107px #fff, 1376px 254px #fff, 1421px 889px #fff, 1779px 2113px #fff, 1335px 1389px #fff, 2488px 610px #fff, 1105px 1217px #fff, 1942px 2397px #fff, 696px 1507px #fff, 1929px 2364px #fff, 1605px 329px #fff, 1507px 446px #fff, 2395px 771px #fff, 1941px 603px #fff, 668px 2321px #fff, 2150px 987px #fff, 321px 1348px #fff, 677px 1174px #fff, 1426px 2128px #fff, 2514px 158px #fff, 2321px 1179px #fff, 772px 590px #fff, 2226px 215px #fff, 289px 1797px #fff, 1517px 563px #fff, 834px 1009px #fff, 265px 1750px #fff, 2109px 1882px #fff, 623px 1263px #fff, 2300px 899px #fff, 1789px 338px #fff, 87px 2050px #fff, 1275px 1525px #fff, 319px 662px #fff;
height: 2px;
width: 2px;
}
html.risingparticles .particle-3 {
-webkit-animation: animParticle 180s linear infinite;
animation: animParticle 180s linear infinite;
box-shadow: 0px 0px #fff, 2240px 441px #fff, 1834px 420px #fff, 1984px 453px #fff, 1169px 1212px #fff, 305px 886px #fff, 2546px 793px #fff, 1980px 2294px #fff, 1303px 1131px #fff, 1733px 2047px #fff, 382px 506px #fff, 965px 1635px #fff, 828px 1040px #fff, 192px 1776px #fff, 200px 748px #fff, 47px 1229px #fff, 1457px 1890px #fff, 2553px 1578px #fff, 1945px 1805px #fff, 2255px 2079px #fff, 2525px 1910px #fff, 2280px 282px #fff, 2101px 1413px #fff, 1082px 1789px #fff, 810px 1319px #fff, 913px 1278px #fff, 189px 1115px #fff, 1736px 1414px #fff, 1892px 271px #fff, 1255px 1131px #fff, 574px 2501px #fff, 1918px 1231px #fff, 99px 676px #fff, 1756px 1793px #fff, 2107px 2246px #fff, 1196px 810px #fff, 2016px 1657px #fff, 2353px 475px #fff, 1533px 2210px #fff, 1469px 1836px #fff, 1090px 2376px #fff, 935px 1839px #fff, 841px 802px #fff, 1173px 72px #fff, 132px 511px #fff, 1903px 304px #fff, 841px 2189px #fff, 1376px 2489px #fff, 1136px 591px #fff, 562px 2354px #fff, 245px 2192px #fff;
height: 3px;
width: 3px;
}
html.risingparticles .particle-3:after {
box-shadow: 0px 0px #fff, 852px 2008px #fff, 1684px 1880px #fff, 858px 590px #fff, 2478px 461px #fff, 2197px 925px #fff, 1230px 1694px #fff, 1511px 417px #fff, 1335px 2559px #fff, 1232px 1081px #fff, 561px 733px #fff, 2143px 1947px #fff, 410px 2027px #fff, 845px 998px #fff, 1973px 1512px #fff, 2406px 1009px #fff, 1756px 1709px #fff, 2496px 2353px #fff, 2048px 85px #fff, 2542px 301px #fff, 300px 23px #fff, 2074px 1517px #fff, 114px 1156px #fff, 510px 1993px #fff, 1943px 2146px #fff, 1058px 1001px #fff, 175px 1155px #fff, 2078px 1294px #fff, 242px 2232px #fff, 906px 178px #fff, 704px 522px #fff, 2489px 2396px #fff, 1275px 717px #fff, 1893px 39px #fff, 383px 2332px #fff, 208px 193px #fff, 44px 2382px #fff, 1020px 1264px #fff, 228px 736px #fff, 1360px 2052px #fff, 1016px 196px #fff, 1920px 242px #fff, 1614px 393px #fff, 1262px 1246px #fff, 1522px 1988px #fff, 852px 41px #fff, 1028px 451px #fff, 2497px 1527px #fff, 267px 415px #fff, 1835px 1336px #fff, 1386px 2547px #fff;
height: 3px;
width: 3px;
}
html.risingparticles .particle-4 {
-webkit-animation: animParticle 600s linear infinite;
animation: animParticle 600s linear infinite;
box-shadow: 0px 0px #fff, 2472px 2536px #fff, 2477px 1486px #fff, 1103px 1033px #fff, 2409px 2505px #fff, 2465px 1896px #fff, 315px 38px #fff, 1501px 385px #fff, 1416px 1697px #fff, 181px 2165px #fff, 207px 1822px #fff, 1283px 98px #fff, 252px 1787px #fff, 2355px 108px #fff, 1795px 59px #fff, 2122px 1513px #fff, 1656px 1731px #fff, 1901px 612px #fff, 515px 2126px #fff, 1809px 1579px #fff, 1004px 916px #fff, 214px 669px #fff, 1486px 496px #fff, 100px 1071px #fff, 451px 1441px #fff, 362px 321px #fff, 632px 1059px #fff, 2285px 87px #fff, 2506px 2123px #fff, 699px 1459px #fff, 166px 1961px #fff, 165px 1348px #fff, 1097px 1456px #fff, 2240px 2261px #fff, 1270px 2163px #fff, 337px 347px #fff, 610px 2323px #fff, 822px 1365px #fff, 322px 1976px #fff, 352px 1357px #fff, 1043px 1607px #fff, 2442px 1283px #fff, 1594px 1715px #fff, 2373px 1688px #fff, 1559px 823px #fff, 46px 437px #fff, 344px 2169px #fff, 1067px 1416px #fff, 1774px 365px #fff, 2173px 1958px #fff, 2017px 1808px #fff, 2019px 1986px #fff, 281px 1157px #fff, 631px 705px #fff, 2323px 1727px #fff, 1843px 115px #fff, 49px 2471px #fff, 542px 196px #fff, 868px 1502px #fff, 2059px 58px #fff, 3px 1523px #fff, 1923px 2004px #fff, 2110px 802px #fff, 622px 648px #fff, 624px 223px #fff, 2401px 735px #fff, 2472px 1692px #fff, 1608px 607px #fff, 1192px 530px #fff, 1145px 543px #fff, 1187px 416px #fff, 498px 1827px #fff, 2433px 1763px #fff, 2278px 420px #fff, 289px 2532px #fff, 238px 135px #fff, 1281px 738px #fff, 1000px 2534px #fff, 33px 559px #fff, 295px 899px #fff, 2289px 57px #fff, 2226px 1098px #fff, 1593px 370px #fff, 262px 1839px #fff, 1997px 2009px #fff, 1843px 2445px #fff, 1678px 2201px #fff, 439px 182px #fff, 1161px 2203px #fff, 901px 2353px #fff, 1074px 235px #fff, 290px 334px #fff, 2314px 1557px #fff, 1347px 102px #fff, 1392px 258px #fff, 1301px 2282px #fff, 2083px 15px #fff, 1425px 2555px #fff, 2496px 1895px #fff, 13px 2483px #fff, 99px 1921px #fff, 2172px 665px #fff, 675px 2130px #fff, 388px 823px #fff, 1118px 2074px #fff, 1539px 2380px #fff, 2191px 2341px #fff, 780px 189px #fff, 574px 2298px #fff, 669px 700px #fff, 1098px 1473px #fff, 1996px 1852px #fff, 848px 1752px #fff, 1663px 578px #fff, 589px 966px #fff, 690px 922px #fff, 656px 1447px #fff, 2210px 641px #fff, 1895px 53px #fff, 2381px 2556px #fff, 1965px 764px #fff, 2558px 184px #fff, 216px 1186px #fff, 1576px 2286px #fff, 970px 1626px #fff, 1504px 344px #fff, 2531px 2260px #fff, 1284px 2406px #fff, 2134px 2553px #fff, 297px 2348px #fff, 2349px 1567px #fff, 1224px 849px #fff, 551px 1976px #fff, 649px 1410px #fff, 912px 2018px #fff, 552px 1975px #fff, 1474px 2221px #fff, 60px 2109px #fff, 868px 1544px #fff, 2541px 195px #fff, 1617px 1266px #fff, 553px 1457px #fff, 96px 1421px #fff, 1394px 1699px #fff, 1692px 1798px #fff, 938px 363px #fff, 472px 1611px #fff, 426px 1213px #fff, 2465px 1193px #fff, 342px 822px #fff, 1369px 1486px #fff, 543px 1270px #fff, 468px 1993px #fff, 1574px 1437px #fff, 613px 1711px #fff, 2506px 743px #fff, 1108px 1433px #fff, 2506px 674px #fff, 616px 1698px #fff, 800px 702px #fff, 2013px 1724px #fff, 1797px 1575px #fff, 286px 2181px #fff, 2478px 290px #fff, 2502px 2373px #fff, 1478px 483px #fff, 2492px 1546px #fff, 1589px 561px #fff, 1168px 311px #fff, 1910px 1856px #fff, 1805px 2513px #fff, 1440px 1449px #fff, 358px 1910px #fff, 624px 7px #fff, 2278px 761px #fff, 772px 2002px #fff, 457px 637px #fff, 1358px 993px #fff, 1352px 2034px #fff, 911px 1863px #fff, 1527px 393px #fff, 222px 809px #fff, 1767px 1004px #fff, 1869px 1625px #fff, 105px 2273px #fff, 1085px 998px #fff, 1838px 1455px #fff, 2515px 1425px #fff, 2425px 2489px #fff, 1434px 275px #fff, 1953px 2166px #fff, 2043px 1638px #fff, 1797px 1794px #fff, 818px 1606px #fff, 2084px 1352px #fff, 1826px 1225px #fff, 2106px 121px #fff, 2517px 2476px #fff, 738px 2172px #fff, 1712px 1414px #fff, 1946px 1006px #fff;
height: 1px;
width: 1px;
}
html.risingparticles .particle-4:after {
box-shadow: 0px 0px #fff, 2323px 1765px #fff, 292px 2144px #fff, 1877px 1000px #fff, 1433px 815px #fff, 2410px 2011px #fff, 2039px 1368px #fff, 194px 1588px #fff, 852px 1315px #fff, 663px 1501px #fff, 243px 2222px #fff, 2043px 1960px #fff, 1780px 2224px #fff, 884px 1839px #fff, 1220px 600px #fff, 1696px 1891px #fff, 137px 1995px #fff, 1415px 384px #fff, 459px 188px #fff, 1820px 2154px #fff, 397px 1726px #fff, 561px 2518px #fff, 1265px 698px #fff, 1630px 2029px #fff, 422px 378px #fff, 2430px 2430px #fff, 2096px 464px #fff, 2388px 1994px #fff, 1104px 1679px #fff, 2543px 1382px #fff, 2522px 2319px #fff, 34px 1751px #fff, 549px 10px #fff, 2452px 1065px #fff, 1121px 973px #fff, 1880px 2432px #fff, 2007px 603px #fff, 1242px 76px #fff, 1496px 5px #fff, 292px 686px #fff, 564px 282px #fff, 43px 1299px #fff, 1722px 443px #fff, 36px 2479px #fff, 2405px 2541px #fff, 1645px 1971px #fff, 1438px 1215px #fff, 806px 1051px #fff, 177px 1740px #fff, 1087px 605px #fff, 5px 554px #fff, 706px 1266px #fff, 2143px 1435px #fff, 726px 1400px #fff, 1073px 582px #fff, 1400px 295px #fff, 1690px 955px #fff, 1063px 520px #fff, 2450px 854px #fff, 672px 2338px #fff, 901px 634px #fff, 2021px 1091px #fff, 421px 1462px #fff, 1793px 750px #fff, 1136px 2393px #fff, 1076px 1083px #fff, 2026px 1604px #fff, 512px 1753px #fff, 2352px 249px #fff, 2179px 2100px #fff, 1932px 331px #fff, 205px 428px #fff, 1455px 2051px #fff, 1714px 663px #fff, 587px 52px #fff, 1849px 1700px #fff, 2041px 451px #fff, 860px 274px #fff, 610px 441px #fff, 2263px 931px #fff, 1621px 2384px #fff, 1916px 1883px #fff, 971px 1116px #fff, 331px 814px #fff, 2087px 1259px #fff, 276px 1736px #fff, 686px 180px #fff, 1864px 1899px #fff, 2071px 420px #fff, 1627px 81px #fff, 1442px 132px #fff, 1947px 1675px #fff, 951px 1493px #fff, 1070px 734px #fff, 888px 1677px #fff, 1757px 1776px #fff, 1465px 1317px #fff, 1082px 2547px #fff, 1244px 2234px #fff, 1161px 888px #fff, 849px 658px #fff, 1924px 626px #fff, 2432px 2198px #fff, 594px 2472px #fff, 490px 241px #fff, 215px 1244px #fff, 2307px 2246px #fff, 1186px 150px #fff, 2549px 1910px #fff, 171px 608px #fff, 647px 1610px #fff, 2460px 1827px #fff, 1891px 135px #fff, 2214px 227px #fff, 727px 1156px #fff, 97px 952px #fff, 185px 1163px #fff, 1045px 1746px #fff, 314px 2543px #fff, 651px 2059px #fff, 732px 340px #fff, 859px 136px #fff, 2444px 2085px #fff, 1877px 932px #fff, 1708px 1818px #fff, 1041px 781px #fff, 1083px 178px #fff, 381px 2479px #fff, 1594px 2225px #fff, 2313px 1763px #fff, 540px 76px #fff, 926px 1608px #fff, 2198px 446px #fff, 550px 875px #fff, 23px 1538px #fff, 690px 2370px #fff, 612px 1464px #fff, 947px 2542px #fff, 1825px 240px #fff, 1705px 1861px #fff, 2047px 415px #fff, 1124px 1075px #fff, 2054px 2128px #fff, 885px 297px #fff, 1669px 702px #fff, 1650px 448px #fff, 149px 932px #fff, 2321px 473px #fff, 1454px 2080px #fff, 1002px 1634px #fff, 457px 1893px #fff, 1437px 2193px #fff, 2225px 888px #fff, 2548px 1646px #fff, 205px 337px #fff, 2225px 1963px #fff, 672px 616px #fff, 2389px 1287px #fff, 2174px 2243px #fff, 593px 1525px #fff, 2278px 146px #fff, 2187px 453px #fff, 869px 85px #fff, 72px 1444px #fff, 560px 369px #fff, 1922px 972px #fff, 346px 1801px #fff, 1254px 325px #fff, 2448px 361px #fff, 833px 2492px #fff, 1450px 987px #fff, 285px 1429px #fff, 1050px 1581px #fff, 224px 1429px #fff, 344px 417px #fff, 1850px 1224px #fff, 58px 30px #fff, 2082px 1339px #fff, 1522px 1959px #fff, 240px 1506px #fff, 1568px 1508px #fff, 2106px 2102px #fff, 2456px 1265px #fff, 1038px 405px #fff, 85px 1907px #fff, 692px 1860px #fff, 697px 511px #fff, 1865px 2089px #fff, 2428px 514px #fff, 1533px 1173px #fff, 917px 1749px #fff, 2272px 2285px #fff, 2355px 1694px #fff, 1793px 941px #fff, 1120px 923px #fff, 750px 906px #fff, 2368px 1791px #fff, 1246px 1282px #fff, 559px 183px #fff, 1230px 399px #fff, 2341px 2492px #fff;
height: 1px;
width: 1px;
}
@-webkit-keyframes animParticle {
from {
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
to {
-webkit-transform: translateY(-2560px);
transform: translateY(-2560px);
}
}
@keyframes animParticle {
from {
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
to {
-webkit-transform: translateY(-2560px);
transform: translateY(-2560px);
}
}
/*
Fireflies by Mike Golus https://codepen.io/mikegolus/pen/Jegvym
*/
html.firefly .fireflies {
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
html.firefly .firefly {
position: fixed;
left: 50%;
top: 50%;
width: 0.4vw;
height: 0.4vw;
margin: -0.2vw 0 0 9.8vw;
animation: ease 200s alternate infinite;
pointer-events: none;
}
html.firefly .firefly::before, html.firefly .firefly::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
transform-origin: -10vw;
}
html.firefly .firefly::before {
background: black;
opacity: 0.4;
animation: drift ease alternate infinite;
}
html.firefly .firefly::after {
background: white;
opacity: 0;
box-shadow: 0 0 0vw 0vw yellow;
animation: drift ease alternate infinite, flash ease infinite;
}
html.firefly .firefly:nth-child(1) {
animation-name: move1;
}
html.firefly .firefly:nth-child(1)::before {
animation-duration: 14s;
}
html.firefly .firefly:nth-child(1)::after {
animation-duration: 14s, 10851ms;
animation-delay: 0ms, 8382ms;
}
@keyframes move1 {
0% {
transform: translateX(29vw) translateY(-48vh) scale(0.62);
}
5.8823529412% {
transform: translateX(38vw) translateY(34vh) scale(0.92);
}
11.7647058824% {
transform: translateX(20vw) translateY(-42vh) scale(0.56);
}
17.6470588235% {
transform: translateX(46vw) translateY(-11vh) scale(0.79);
}
23.5294117647% {
transform: translateX(39vw) translateY(-43vh) scale(0.82);
}
29.4117647059% {
transform: translateX(17vw) translateY(-8vh) scale(0.6);
}
35.2941176471% {
transform: translateX(15vw) translateY(-30vh) scale(0.71);
}
41.1764705882% {
transform: translateX(12vw) translateY(37vh) scale(0.26);
}
47.0588235294% {
transform: translateX(-13vw) translateY(11vh) scale(0.97);
}
52.9411764706% {
transform: translateX(-13vw) translateY(28vh) scale(0.86);
}
58.8235294118% {
transform: translateX(12vw) translateY(-7vh) scale(0.88);
}
64.7058823529% {
transform: translateX(43vw) translateY(32vh) scale(0.87);
}
70.5882352941% {
transform: translateX(-24vw) translateY(40vh) scale(0.8);
}
76.4705882353% {
transform: translateX(22vw) translateY(-31vh) scale(0.6);
}
82.3529411765% {
transform: translateX(-24vw) translateY(-37vh) scale(0.7);
}
88.2352941176% {
transform: translateX(26vw) translateY(40vh) scale(0.75);
}
94.1176470588% {
transform: translateX(-10vw) translateY(-18vh) scale(0.42);
}
100% {
transform: translateX(-35vw) translateY(2vh) scale(0.92);
}
}
html.firefly .firefly:nth-child(2) {
animation-name: move2;
}
html.firefly .firefly:nth-child(2)::before {
animation-duration: 18s;
}
html.firefly .firefly:nth-child(2)::after {
animation-duration: 18s, 9441ms;
animation-delay: 0ms, 8398ms;
}
@keyframes move2 {
0% {
transform: translateX(27vw) translateY(-27vh) scale(0.62);
}
4.5454545455% {
transform: translateX(4vw) translateY(-22vh) scale(0.97);
}
9.0909090909% {
transform: translateX(-39vw) translateY(-11vh) scale(0.62);
}
13.6363636364% {
transform: translateX(26vw) translateY(17vh) scale(0.9);
}
18.1818181818% {
transform: translateX(46vw) translateY(-30vh) scale(0.71);
}
22.7272727273% {
transform: translateX(48vw) translateY(-44vh) scale(0.77);
}
27.2727272727% {
transform: translateX(-17vw) translateY(4vh) scale(0.72);
}
31.8181818182% {
transform: translateX(40vw) translateY(40vh) scale(0.89);
}
36.3636363636% {
transform: translateX(29vw) translateY(-14vh) scale(0.94);
}
40.9090909091% {
transform: translateX(5vw) translateY(0vh) scale(0.77);
}
45.4545454545% {
transform: translateX(2vw) translateY(42vh) scale(0.52);
}
50% {
transform: translateX(-14vw) translateY(49vh) scale(0.42);
}
54.5454545455% {
transform: translateX(31vw) translateY(-49vh) scale(0.59);
}
59.0909090909% {
transform: translateX(46vw) translateY(-30vh) scale(0.28);
}
63.6363636364% {
transform: translateX(11vw) translateY(3vh) scale(0.8);
}
68.1818181818% {
transform: translateX(46vw) translateY(-34vh) scale(0.28);
}
72.7272727273% {
transform: translateX(40vw) translateY(-40vh) scale(0.49);
}
77.2727272727% {
transform: translateX(21vw) translateY(12vh) scale(0.46);
}
81.8181818182% {
transform: translateX(-19vw) translateY(-16vh) scale(0.56);
}
86.3636363636% {
transform: translateX(-9vw) translateY(15vh) scale(0.71);
}
90.9090909091% {
transform: translateX(-9vw) translateY(-32vh) scale(0.85);
}
95.4545454545% {
transform: translateX(0vw) translateY(-37vh) scale(0.97);
}
100% {
transform: translateX(0vw) translateY(21vh) scale(0.47);
}
}
html.firefly .firefly:nth-child(3) {
animation-name: move3;
}
html.firefly .firefly:nth-child(3)::before {
animation-duration: 17s;
}
html.firefly .firefly:nth-child(3)::after {
animation-duration: 17s, 5953ms;
animation-delay: 0ms, 3341ms;
}
@keyframes move3 {
0% {
transform: translateX(28vw) translateY(24vh) scale(0.8);
}
4% {
transform: translateX(14vw) translateY(-13vh) scale(0.87);
}
8% {
transform: translateX(-5vw) translateY(21vh) scale(0.48);
}
12% {
transform: translateX(-42vw) translateY(20vh) scale(0.74);
}
16% {
transform: translateX(-4vw) translateY(44vh) scale(0.92);
}
20% {
transform: translateX(-5vw) translateY(37vh) scale(0.99);
}
24% {
transform: translateX(-35vw) translateY(47vh) scale(0.46);
}
28% {
transform: translateX(-22vw) translateY(-8vh) scale(0.38);
}
32% {
transform: translateX(-44vw) translateY(36vh) scale(0.34);
}
36% {
transform: translateX(-13vw) translateY(44vh) scale(0.96);
}
40% {
transform: translateX(29vw) translateY(22vh) scale(0.57);
}
44% {
transform: translateX(36vw) translateY(38vh) scale(0.56);
}
48% {
transform: translateX(-44vw) translateY(10vh) scale(0.9);
}
52% {
transform: translateX(-19vw) translateY(36vh) scale(0.54);
}
56% {
transform: translateX(-6vw) translateY(-48vh) scale(0.95);
}
60% {
transform: translateX(-5vw) translateY(13vh) scale(0.93);
}
64% {
transform: translateX(-40vw) translateY(3vh) scale(0.43);
}
68% {
transform: translateX(20vw) translateY(33vh) scale(0.49);
}
72% {
transform: translateX(-4vw) translateY(-37vh) scale(0.32);
}
76% {
transform: translateX(16vw) translateY(19vh) scale(0.39);
}
80% {
transform: translateX(33vw) translateY(4vh) scale(0.46);
}
84% {
transform: translateX(-49vw) translateY(-4vh) scale(0.32);
}
88% {
transform: translateX(0vw) translateY(10vh) scale(0.58);
}
92% {
transform: translateX(-25vw) translateY(2vh) scale(0.94);
}
96% {
transform: translateX(-48vw) translateY(-30vh) scale(0.4);
}
100% {
transform: translateX(-20vw) translateY(-40vh) scale(0.68);
}
}
html.firefly .firefly:nth-child(4) {
animation-name: move4;
}
html.firefly .firefly:nth-child(4)::before {
animation-duration: 10s;
}
html.firefly .firefly:nth-child(4)::after {
animation-duration: 10s, 5179ms;
animation-delay: 0ms, 2450ms;
}
@keyframes move4 {
0% {
transform: translateX(9vw) translateY(13vh) scale(0.88);
}
5.5555555556% {
transform: translateX(-43vw) translateY(48vh) scale(0.81);
}
11.1111111111% {
transform: translateX(-38vw) translateY(-47vh) scale(0.93);
}
16.6666666667% {
transform: translateX(-47vw) translateY(17vh) scale(0.92);
}
22.2222222222% {
transform: translateX(14vw) translateY(44vh) scale(1);
}
27.7777777778% {
transform: translateX(-10vw) translateY(-10vh) scale(0.48);
}
33.3333333333% {
transform: translateX(0vw) translateY(-6vh) scale(0.78);
}
38.8888888889% {
transform: translateX(7vw) translateY(8vh) scale(0.27);
}
44.4444444444% {
transform: translateX(-21vw) translateY(43vh) scale(0.35);
}
50% {
transform: translateX(-6vw) translateY(-41vh) scale(0.54);
}
55.5555555556% {
transform: translateX(11vw) translateY(28vh) scale(0.61);
}
61.1111111111% {
transform: translateX(-18vw) translateY(-47vh) scale(0.84);
}
66.6666666667% {
transform: translateX(-46vw) translateY(-27vh) scale(0.31);
}
72.2222222222% {
transform: translateX(-8vw) translateY(-34vh) scale(0.93);
}
77.7777777778% {
transform: translateX(-3vw) translateY(-5vh) scale(0.77);
}
83.3333333333% {
transform: translateX(25vw) translateY(-23vh) scale(0.63);
}
88.8888888889% {
transform: translateX(27vw) translateY(7vh) scale(1);
}
94.4444444444% {
transform: translateX(28vw) translateY(16vh) scale(0.54);
}
100% {
transform: translateX(-38vw) translateY(21vh) scale(0.28);
}
}
html.firefly .firefly:nth-child(5) {
animation-name: move5;
}
html.firefly .firefly:nth-child(5)::before {
animation-duration: 11s;
}
html.firefly .firefly:nth-child(5)::after {
animation-duration: 11s, 10028ms;
animation-delay: 0ms, 2134ms;
}
@keyframes move5 {
0% {
transform: translateX(-3vw) translateY(10vh) scale(0.26);
}
4.7619047619% {
transform: translateX(9vw) translateY(4vh) scale(0.41);
}
9.5238095238% {
transform: translateX(-5vw) translateY(-46vh) scale(0.46);
}
14.2857142857% {
transform: translateX(12vw) translateY(-39vh) scale(0.99);
}
19.0476190476% {
transform: translateX(-26vw) translateY(-36vh) scale(0.32);
}
23.8095238095% {
transform: translateX(-33vw) translateY(-21vh) scale(0.58);
}
28.5714285714% {
transform: translateX(42vw) translateY(-11vh) scale(0.38);
}
33.3333333333% {
transform: translateX(-5vw) translateY(23vh) scale(0.29);
}
38.0952380952% {
transform: translateX(-14vw) translateY(-26vh) scale(0.31);
}
42.8571428571% {
transform: translateX(-24vw) translateY(41vh) scale(0.3);
}
47.619047619% {
transform: translateX(-8vw) translateY(12vh) scale(0.94);
}
52.380952381% {
transform: translateX(36vw) translateY(20vh) scale(0.65);
}
57.1428571429% {