-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
799 lines (744 loc) · 56.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Meu nome é Danillo e sou Desenvolvedor Full Stack"
/>
<meta
name="keywords"
content="sites, web, desenvolvimento, fullstack, danillo silva, iniciante, programador, lillo, lillow, full-stack, front-end, danillo, website, portfólio"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="copyright" content="lillow 2022" />
<meta
property="og:title"
content="Danillo Silva - Full-Stack Developer Junior"
/>
<meta property="og:description" content="Full-Stack developer junior" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Raleway:wght@500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/settings/reset.css" />
<link rel="stylesheet" href="./styles/components/main-header.css" />
<link rel="stylesheet" href="./styles/components/main-navbar.css" />
<link rel="stylesheet" href="./styles/components/main-mobilemenu.css" />
<link rel="stylesheet" href="./styles/components/main-navlist.css" />
<link rel="stylesheet" href="./styles/components/main-logo.css" />
<link rel="stylesheet" href="./styles/components/main-action.css" />
<link rel="stylesheet" href="./styles/components/main-banner.css" />
<link rel="stylesheet" href="./styles/components/main-image.css" />
<link rel="stylesheet" href="./styles/components/main-figure.css" />
<link rel="stylesheet" href="./styles/components/main-box.css" />
<link rel="stylesheet" href="./styles/components/main-section.css" />
<link rel="stylesheet" href="./styles/components/main-cards.css" />
<link rel="stylesheet" href="./styles/components/main-title.css" />
<link rel="stylesheet" href="./styles/components/main-subtitle.css" />
<link rel="stylesheet" href="./styles/components/main-button.css" />
<link rel="stylesheet" href="./styles/components/main-wrapper.css" />
<link rel="stylesheet" href="./styles/components/main-container.css" />
<link rel="stylesheet" href="./styles/components/main-carousel.css" />
<link rel="stylesheet" href="./styles/components/main-text.css" />
<link rel="stylesheet" href="./styles/components/main-footer.css" />
<link rel="stylesheet" href="./styles/components/main-modal.css" />
<link rel="stylesheet" href="./styles/components/main-form.css" />
<link rel="stylesheet" href="./styles/settings/global.css" />
<link rel="stylesheet" href="./styles/settings/colors.css" />
<link rel="shortcut icon" href="./assets/images/favicon.png" />
<title>Portfólio | Danillo Silva - Full-Stack developer junior</title>
</head>
<body>
<!--Navbar-->
<header class="main-header">
<nav class="main-navbar">
<a href="" class="main-logo">
<h2 class="logo">lillo<span class="character">.</span>w</h2>
</a>
<ul class="navigation">
<li class="item">
<a class="main-action" href="#home">Início</a>
</li>
<li class="item">
<a class="main-action" href="#about">Sobre</a>
</li>
<li class="item">
<a class="main-action" href="#projects">Projetos</a>
</li>
<li class="item">
<a class="main-action" href="#skills" lang="en">Skills</a>
</li>
<li class="item">
<label class="main-button" for="contact">Contato</label>
</li>
</ul>
<div class="main-mobilemenu">
<div class="line -one"></div>
<div class="line -two"></div>
<div class="line -three"></div>
</div>
</nav>
<ul class="main-navlist">
<li class="item">
<a class="main-action -second -mobile" href="#home">Início</a>
</li>
<li class="item">
<a class="main-action -second -mobile" href="#about">Sobre</a>
</li>
<li class="item">
<a class="main-action -second -mobile" href="#projects">Projetos</a>
</li>
<li class="item">
<a class="main-action -second -mobile" href="#skills" lang="en"
>Skills</a
>
</li>
<li class="item">
<label class="main-button" for="contact">Contato</label>
</li>
</ul>
</header>
<!--/Navbar-->
<main>
<!-- Home -->
<section id="home" class="main-banner">
<div class="main-container -purple -second">
<div class="main-wrapper -banner">
<div class="main-box -grey">
<div class="main-title">
<h1 class="text1">Danillo Silva</h1>
<h1 class="text2">Danillo Silva</h1>
</div>
<div class="main-subtitle">
<h2 class="text1">FullStack Developer</h2>
<h2 class="text2"></h2>
</div>
</div>
<div class="navigation">
<a
class="main-button"
href="https://drive.google.com/file/d/1IfYs_A1rrqRkfu-lKSYX8NKYKaTJFQhk/view?usp=sharing"
target="_blank"
lang="en"
>Download CV</a
>
<a
class="main-button"
href="https://www.linkedin.com/in/danillo-silva/"
target="_blank"
lang="en"
>Linkedin</a
>
</div>
</div>
<figure class="main-image">
<img
class="lillow"
src="./assets/images/home-image.png"
alt="Imagem de Lillo de início"
/>
<figure class="main-figure -one">
<img
class="icon1"
src="./assets/icons/html-pixel-art-icon.png"
alt="Logo do HTML pixel art"
/>
<svg class="icon2" viewBox="0 0 64 64" alt="Figura HTML">
<path
class="path1"
d="M5.015,7.244l5.466,45.246c0.194,1.603,1.337,2.935,2.9,3.379l17.535,4.977 c0.709,0.201,1.46,0.206,2.172,0.013l18.442-4.996c1.614-0.437,2.789-1.817,2.955-3.471l4.549-45.187C59.153,6.024,58.22,5,57.025,5 H7.019C5.809,5,4.87,6.051,5.015,7.244z"
/>
<path
class="path2"
d="M57.025,5H32v56c0.366,0.002,0.732-0.045,1.088-0.141l18.442-4.996 c1.614-0.437,2.789-1.817,2.955-3.471l4.549-45.187C59.153,6.024,58.22,5,57.025,5z"
/>
<path
d="M32.025,62c-0.465,0-0.931-0.064-1.383-0.192l-17.535-4.977c-1.955-0.555-3.376-2.211-3.62-4.221 L4.021,7.364c-0.103-0.85,0.165-1.705,0.733-2.347C5.328,4.371,6.153,4,7.02,4h50.006c0.854,0,1.672,0.362,2.244,0.995 c0.567,0.628,0.845,1.47,0.76,2.311L55.48,52.493c-0.208,2.052-1.69,3.794-3.69,4.334l-18.44,4.996 C32.916,61.941,32.471,62,32.025,62z M7.02,6C6.721,6,6.448,6.122,6.252,6.344C6.06,6.561,5.973,6.838,6.008,7.124l0,0l5.466,45.246 c0.146,1.207,1.002,2.203,2.18,2.537l17.536,4.977c0.535,0.151,1.1,0.155,1.637,0.01l18.441-4.996 c1.205-0.326,2.099-1.373,2.223-2.605l4.549-45.188c0.028-0.283-0.062-0.556-0.253-0.769C57.59,6.119,57.319,6,57.025,6H7.02z"
/>
<path
class="path3"
d="M7 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C8 11.553 7.553 12 7 12zM12 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C13 11.553 12.553 12 12 12zM17 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C18 11.553 17.553 12 17 12zM22 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C23 11.553 22.553 12 22 12zM27 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C28 11.553 27.553 12 27 12zM32 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C33 11.553 32.553 12 32 12zM37 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C38 11.553 37.553 12 37 12zM42 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C43 11.553 42.553 12 42 12zM47 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C48 11.553 47.553 12 47 12zM52 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C53 11.553 52.553 12 52 12zM57 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C58 11.553 57.553 12 57 12z"
/>
<path
class="path4"
d="M47.018,17H17c-0.614,0-1.083,0.548-0.987,1.155l2.52,16.001C18.61,34.642,19.029,35,19.521,35h19.31 c0.599,0,1.063,0.523,0.993,1.117l-0.769,6.508l-6.961,2.122l-6.147-2.082l-0.444-2.821C25.426,39.358,25.007,39,24.515,39h-4.049 c-0.614,0-1.083,0.549-0.988,1.156l1.014,6.439c0.057,0.362,0.31,0.663,0.658,0.78l10.553,3.574C31.804,50.983,31.908,51,32.013,51 c0.095,0,0.19-0.014,0.282-0.042l11.643-3.548c0.374-0.114,0.646-0.439,0.691-0.827l1.945-16.465C46.645,29.523,46.181,29,45.582,29 H24.65c-0.492,0-0.911-0.358-0.988-0.844l-0.63-4C22.936,23.549,23.405,23,24.02,23h22.507c0.507,0,0.934-0.379,0.993-0.883 l0.475-4.019C48.064,17.514,47.607,17,47.018,17z"
/>
<path
class="path5"
d="M32.014 52c-.211 0-.421-.034-.624-.102l-10.56-3.576c-.701-.236-1.209-.838-1.325-1.57l-1.015-6.441c-.091-.578.075-1.165.455-1.61.381-.445.935-.7 1.521-.7h4.05c.991 0 1.822.711 1.976 1.69l.35 2.222 5.27 1.784 6.029-1.837L38.831 36H19.521c-.991 0-1.822-.711-1.976-1.69l-2.521-16c-.091-.577.075-1.164.455-1.609C15.86 16.255 16.414 16 17 16h30.019c.565 0 1.105.242 1.481.665.376.422.554.987.488 1.55l-.475 4.02C48.395 23.241 47.541 24 46.527 24H24.02l.631 4h20.932c.571 0 1.116.245 1.495.672.379.426.559.996.491 1.563l-1.945 16.465c-.093.784-.64 1.438-1.395 1.667l-11.641 3.549C32.402 51.972 32.209 52 32.014 52zM20.466 40l1.015 6.439 10.543 3.563 11.623-3.55L45.582 30H24.649c-.991 0-1.822-.711-1.976-1.69l-.63-3.999c-.091-.578.075-1.165.455-1.61.381-.445.935-.7 1.521-.7h22.508L47 18H17l2.521 16h19.31c.571 0 1.116.245 1.495.672.379.426.559.996.491 1.563l-.769 6.508c-.047.395-.322.724-.701.839l-6.961 2.122c-.201.062-.415.059-.612-.009l-6.147-2.082c-.353-.119-.609-.424-.668-.792L24.515 40H20.466zM39.999 54.806c-.44 0-.844-.293-.964-.738-.145-.533.17-1.082.703-1.227l2-.542c.534-.146 1.083.17 1.227.703.145.533-.17 1.082-.703 1.227l-2 .542C40.174 54.795 40.086 54.806 39.999 54.806zM32.024 57.003l-5.298-1.504c-.531-.15-.84-.704-.688-1.235.15-.531.701-.842 1.235-.688l4.763 1.352 3.702-1.002c.534-.148 1.083.17 1.227.703.145.533-.17 1.083-.703 1.227L32.024 57.003z"
/>
<path
class="path6"
d="M50.5 23l1.238 2.262L54 26.5l-2.262 1.238L50.5 30l-1.238-2.262L47 26.5l2.262-1.238L50.5 23zM47.502 47l.876 1.61L50 49.502l-1.622.876L47.502 52l-.892-1.622L45 49.502l1.61-.892L47.502 47zM12.498 35l.529.962.962.536-.962.529L12.498 38l-.536-.973L11 36.498l.962-.536L12.498 35z"
/>
</svg>
</figure>
<figure class="main-figure -two">
<img
class="icon1"
src="./assets/icons/css-pixel-art-icon.png"
alt="Logo CSS pixel art"
/>
<svg class="icon2" viewBox="0 0 64 64" alt="Figura CSS">
<path
class="path1"
fill="#7bbeeb"
d="M5.015,7.244l5.466,45.246c0.194,1.603,1.337,2.935,2.9,3.379l17.535,4.977 c0.709,0.201,1.46,0.206,2.172,0.013l18.442-4.996c1.614-0.437,2.789-1.817,2.955-3.471l4.549-45.187C59.153,6.024,58.22,5,57.025,5 H7.019C5.809,5,4.87,6.051,5.015,7.244z"
/>
<path
class="path2"
fill="#ace3ff"
d="M57.025,5H32v56c0.366,0.002,0.732-0.045,1.088-0.141l18.442-4.996 c1.614-0.437,2.789-1.817,2.955-3.471l4.549-45.187C59.153,6.024,58.22,5,57.025,5z"
/>
<path
d="M32.025,62c-0.465,0-0.931-0.064-1.383-0.192l-17.535-4.977c-1.955-0.555-3.376-2.211-3.62-4.221 L4.021,7.364c-0.103-0.85,0.165-1.705,0.733-2.347C5.328,4.371,6.153,4,7.02,4h50.006c0.854,0,1.672,0.362,2.244,0.995 c0.567,0.628,0.845,1.47,0.76,2.311L55.48,52.493c-0.208,2.052-1.69,3.794-3.69,4.334l-18.44,4.996 C32.916,61.941,32.471,62,32.025,62z M7.02,6C6.721,6,6.448,6.122,6.252,6.344C6.06,6.561,5.973,6.838,6.008,7.124l0,0l5.466,45.246 c0.146,1.207,1.002,2.203,2.18,2.537l17.536,4.977c0.535,0.151,1.1,0.155,1.637,0.01l18.441-4.996 c1.205-0.326,2.099-1.373,2.223-2.605l4.549-45.188c0.028-0.283-0.062-0.556-0.253-0.769C57.59,6.119,57.319,6,57.025,6H7.02z"
/>
<path
class="path3"
d="M7 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C8 11.553 7.553 12 7 12zM12 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C13 11.553 12.553 12 12 12zM17 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C18 11.553 17.553 12 17 12zM22 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C23 11.553 22.553 12 22 12zM27 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C28 11.553 27.553 12 27 12zM32 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C33 11.553 32.553 12 32 12zM37 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C38 11.553 37.553 12 37 12zM42 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C43 11.553 42.553 12 42 12zM47 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C48 11.553 47.553 12 47 12zM52 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C53 11.553 52.553 12 52 12zM57 12c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1s1 .447 1 1v2C58 11.553 57.553 12 57 12zM39.999 54.806c-.44 0-.844-.293-.964-.738-.145-.533.17-1.082.703-1.227l2-.542c.534-.146 1.083.17 1.227.703.145.533-.17 1.082-.703 1.227l-2 .542C40.174 54.795 40.086 54.806 39.999 54.806zM32.024 57.003l-5.298-1.504c-.531-.15-.84-.704-.688-1.235.15-.531.701-.842 1.235-.688l4.763 1.352 3.702-1.002c.534-.148 1.083.17 1.227.703.145.533-.17 1.083-.703 1.227L32.024 57.003z"
/>
<path
class="path4"
d="M15.5 30l1.238 2.262L19 33.5l-2.262 1.238L15.5 37l-1.238-2.262L12 33.5l2.262-1.238L15.5 30zM47.502 47l.876 1.61L50 49.502l-1.622.876L47.502 52l-.892-1.622L45 49.502l1.61-.892L47.502 47zM52.504 23l.531.962L54 24.498l-.966.529L52.504 26l-.538-.973L51 24.498l.966-.536L52.504 23z"
/>
<path
class="path5"
d="M47.018,17H17c-0.614,0-1.083,0.548-0.987,1.155L16.776,23h24.598l-0.709,6H25v6h14.956l-0.901,7.625 l-6.961,2.122l-6.147-2.082l-0.444-2.821C25.426,39.358,25.007,39,24.515,39h-4.049c-0.614,0-1.083,0.549-0.988,1.156l1.014,6.439 c0.057,0.362,0.31,0.663,0.658,0.78l10.553,3.574C31.804,50.983,31.908,51,32.013,51c0.095,0,0.19-0.014,0.282-0.042l11.643-3.548 c0.374-0.114,0.646-0.439,0.691-0.827l2.891-24.465l0.475-4.019C48.064,17.514,47.607,17,47.018,17z"
/>
<path
class="path6"
d="M32.014,52c-0.211,0-0.421-0.034-0.624-0.102l-10.56-3.576c-0.701-0.236-1.209-0.838-1.325-1.57 l-1.015-6.441c-0.091-0.578,0.075-1.165,0.455-1.61c0.381-0.445,0.935-0.7,1.521-0.7h4.05c0.991,0,1.822,0.711,1.976,1.69 l0.35,2.222l5.27,1.784l6.029-1.837L38.831,36H25c-0.553,0-1-0.447-1-1v-6c0-0.553,0.447-1,1-1h14.776l0.473-4H16.775 c-0.492,0-0.911-0.358-0.988-0.845l-0.763-4.846c-0.091-0.577,0.075-1.164,0.455-1.609C15.86,16.255,16.414,16,17,16h30.019 c0.566,0,1.106,0.243,1.483,0.666c0.375,0.423,0.553,0.988,0.486,1.551l-3.365,28.482c-0.093,0.782-0.639,1.437-1.393,1.666 l-11.643,3.55C32.402,51.972,32.209,52,32.014,52z M20.466,40l1.015,6.439l10.543,3.563l11.623-3.55L47,18H17l0.63,4h23.744 c0.286,0,0.558,0.122,0.747,0.336c0.19,0.213,0.279,0.498,0.246,0.781l-0.709,6C41.599,29.621,41.172,30,40.665,30H26v4h13.956 c0.285,0,0.558,0.122,0.747,0.336c0.19,0.213,0.279,0.498,0.246,0.781l-0.9,7.625c-0.047,0.395-0.322,0.724-0.701,0.839 l-6.961,2.122c-0.201,0.062-0.415,0.059-0.612-0.009l-6.147-2.082c-0.353-0.119-0.609-0.424-0.668-0.792L24.515,40H20.466z"
/>
</svg>
</figure>
<figure class="main-figure -three">
<img
class="icon1"
src="./assets/icons/js-pixel-art-icon2.png"
alt="Logo so JavaScript em pixel art"
/>
<svg
class="icon2"
viewBox="0 0 64 64"
alt="Logo do JavaScript animado"
>
<path
class="path1"
d="M51,7H13c-3.31,0-6,2.69-6,6v38c0,3.31,2.69,6,6,6h38c3.31,0,6-2.69,6-6V13C57,9.69,54.31,7,51,7z M45.88,52c-2.76,0-4.85-1.11-6.2-3.29l1.76-1.21c0.84,1.25,2.1,2.6,4.34,2.6c2.57,0,3.72-1.59,3.72-3.17 c0-2.25-1.71-3.02-3.53-3.83l-1.07-0.47c-3.33-1.45-4.57-3-4.57-5.71c0-2.87,2.13-4.8,5.3-4.8c2.16,0,3.63,0.67,4.74,2.22 l-1.69,1.11c-0.8-1.03-1.77-1.5-3.05-1.5c-1.77,0-3.06,1.21-3.06,2.88c0,2,1.4,2.77,3.24,3.59l1.08,0.47 c3.87,1.7,5.11,3.15,5.11,5.99C52,50.65,48.84,52,45.88,52z M27.27,52c-2.66,0-4.78-1.53-5.92-3.25l2.02-1.2 c0.95,1.21,2.19,1.84,3.63,1.84c2.24,0,3.33-1.24,3.33-3.79V32.12H33V46.3C33,51.01,29.89,52,27.27,52z"
/>
<path
class="path2"
d="M11,7h42c2.209,0,4,1.791,4,4l0,0c0,1.657-1.343,3-3,3H10c-1.657,0-3-1.343-3-3l0,0 C7,8.791,8.791,7,11,7z"
/>
<path
class="path3"
d="M51.424,58H12.577C8.951,58,6,55.049,6,51.423V12.577C6,8.951,8.951,6,12.577,6h38.847 C55.05,6,58,8.95,58,12.576v38.849C58,55.05,55.05,58,51.424,58z M12.577,8C10.053,8,8,10.053,8,12.577v38.846 C8,53.947,10.053,56,12.577,56h38.847C53.947,56,56,53.947,56,51.424V12.576C56,10.053,53.947,8,51.424,8H12.577z"
/>
<path
class="path4"
d="M47.69,39.06l-1.07-0.47c-1.88-0.83-2.05-1.13-2.05-1.76c0-0.55,0.4-0.88,1.06-0.88 c0.74,0,1.26,0.22,1.89,1.36c0.13,0.25,0.36,0.43,0.63,0.49c0.27,0.07,0.56,0.02,0.79-0.13l3.35-2.2c0.44-0.29,0.58-0.86,0.32-1.32 c-1.53-2.75-3.75-4.03-6.98-4.03c-4.23,0-7.3,2.86-7.3,6.8c0,4.43,2.92,6.3,5.76,7.54l1.07,0.47c2.11,0.94,2.34,1.24,2.34,2 c0,0.97-0.94,1.17-1.72,1.17c-1.55,0-2.3-1.05-3.18-2.52c-0.14-0.24-0.38-0.41-0.65-0.47c-0.26-0.06-0.55,0-0.77,0.15l-3.38,2.31 c-0.41,0.28-0.56,0.82-0.34,1.27c1.68,3.37,4.59,5.16,8.42,5.16c4.93,0,8.12-2.8,8.12-7.12C54,42.67,51.58,40.76,47.69,39.06z M45.88,52c-2.76,0-4.85-1.11-6.2-3.29l1.76-1.21c0.84,1.25,2.1,2.6,4.34,2.6c2.57,0,3.72-1.59,3.72-3.17 c0-2.25-1.71-3.02-3.53-3.83l-1.07-0.47c-3.33-1.45-4.57-3-4.57-5.71c0-2.87,2.13-4.8,5.3-4.8c2.16,0,3.63,0.67,4.74,2.22 l-1.69,1.11c-0.8-1.03-1.77-1.5-3.05-1.5c-1.77,0-3.06,1.21-3.06,2.88c0,2,1.4,2.77,3.24,3.59l1.08,0.47 c3.87,1.7,5.11,3.15,5.11,5.99C52,50.65,48.84,52,45.88,52z"
/>
<path
class="path5"
d="M52,46.88c0,3.77-3.16,5.12-6.12,5.12c-2.76,0-4.85-1.11-6.2-3.29l1.76-1.21 c0.84,1.25,2.1,2.6,4.34,2.6c2.57,0,3.72-1.59,3.72-3.17c0-2.25-1.71-3.02-3.53-3.83l-1.07-0.47c-3.33-1.45-4.57-3-4.57-5.71 c0-2.87,2.13-4.8,5.3-4.8c2.16,0,3.63,0.67,4.74,2.22l-1.69,1.11c-0.8-1.03-1.77-1.5-3.05-1.5c-1.77,0-3.06,1.21-3.06,2.88 c0,2,1.4,2.77,3.24,3.59l1.08,0.47C50.76,42.59,52,44.04,52,46.88z"
/>
<path
class="path6"
d="M34,30.12h-4.67c-0.55,0-1,0.45-1,1V45.6c0,1.79-0.53,1.79-1.33,1.79c-1,0-1.83-0.56-2.46-1.68 c-0.14-0.24-0.36-0.41-0.62-0.48c-0.26-0.06-0.54-0.02-0.77,0.11l-3.66,2.19c-0.45,0.27-0.61,0.83-0.39,1.29 c1.14,2.39,3.97,5.18,8.17,5.18c4.84,0,7.73-2.88,7.73-7.7V31.12C35,30.57,34.55,30.12,34,30.12z M33,46.3c0,4.71-3.11,5.7-5.73,5.7 c-2.66,0-4.78-1.53-5.92-3.25l2.02-1.2c0.95,1.21,2.19,1.84,3.63,1.84c2.24,0,3.33-1.24,3.33-3.79V32.12H33V46.3z"
/>
<path
class="path7"
d="M33,32.12V46.3c0,4.71-3.11,5.7-5.73,5.7c-2.66,0-4.78-1.53-5.92-3.25l2.02-1.2 c0.95,1.21,2.19,1.84,3.63,1.84c2.24,0,3.33-1.24,3.33-3.79V32.12H33z"
/>
<path
class="path8"
d="M17,12c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1s1-0.448,1-1v-2C18,12.448,17.552,12,17,12z M12,12c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1s1-0.448,1-1v-2C13,12.448,12.552,12,12,12z M32,12c-0.552,0-1,0.448-1,1v2 c0,0.552,0.448,1,1,1s1-0.448,1-1v-2C33,12.448,32.552,12,32,12z M37,12c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1s1-0.448,1-1v-2 C38,12.448,37.552,12,37,12z M42,12c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1s1-0.448,1-1v-2C43,12.448,42.552,12,42,12z M47,12 c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1s1-0.448,1-1v-2C48,12.448,47.552,12,47,12z M52,12c-0.552,0-1,0.448-1,1v2 c0,0.552,0.448,1,1,1s1-0.448,1-1v-2C53,12.448,52.552,12,52,12z M22,12c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1s1-0.448,1-1v-2 C23,12.448,22.552,12,22,12z M27,12c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1s1-0.448,1-1v-2C28,12.448,27.552,12,27,12z"
/>
</svg>
</figure>
<figure class="main-figure -four">
<img
class="icon1"
src="./assets/icons/react-pixel-art-icon.png"
alt="Logo do React em pixel art"
/>
<svg class="icon2" viewBox="0 0 64 64" alt="Figura React">
<circle class="circle" cx="32" cy="33" r="6"></circle>
<path
class="path1"
d="M32,40c-3.859,0-7-3.141-7-7s3.141-7,7-7s7,3.141,7,7S35.859,40,32,40z M32,28 c-2.757,0-5,2.243-5,5s2.243,5,5,5s5-2.243,5-5S34.757,28,32,28z"
></path>
<path
class="path1"
d="M32,46C15.178,46,2,40.29,2,33s13.178-13,30-13s30,5.71,30,13S48.822,46,32,46z M32,22 C16.822,22,4,27.037,4,33s12.822,11,28,11s28-5.037,28-11S47.178,22,32,22z"
></path>
<path
class="path1"
d="M20.316,59.827c-1.222,0-2.335-0.28-3.316-0.847c-3.149-1.818-4.425-6.291-3.593-12.596 c0.793-6.004,3.397-13.065,7.334-19.885c3.938-6.819,8.752-12.606,13.555-16.295C39.341,6.332,43.853,5.202,47,7.02l0,0 c3.149,1.818,4.425,6.291,3.593,12.596C49.8,25.619,47.195,32.681,43.259,39.5c-3.938,6.819-8.752,12.606-13.555,16.295 C26.232,58.46,23.013,59.827,20.316,59.827z M43.684,8.179c-2.234,0-5.079,1.239-8.17,3.613c-4.6,3.532-9.23,9.11-13.04,15.708 c-3.809,6.598-6.324,13.396-7.084,19.146c-0.709,5.371,0.243,9.234,2.61,10.602s6.187,0.26,10.486-3.04 c4.6-3.532,9.23-9.11,13.04-15.708c3.809-6.598,6.324-13.396,7.084-19.146c0.709-5.371-0.243-9.234-2.61-10.602l0,0 C45.336,8.368,44.556,8.179,43.684,8.179z"
></path>
<path
class="path1"
d="M43.684,59.827c-2.696,0-5.916-1.367-9.388-4.032c-4.803-3.688-9.617-9.476-13.555-16.295 c-3.937-6.819-6.541-13.881-7.334-19.885C12.575,13.311,13.851,8.838,17,7.02c3.15-1.816,7.661-0.686,12.704,3.186 c4.803,3.688,9.617,9.476,13.555,16.295c3.937,6.819,6.541,13.881,7.334,19.885C51.425,52.689,50.149,57.162,47,58.98 C46.019,59.547,44.904,59.827,43.684,59.827z M20.316,8.179c-0.873,0-1.651,0.189-2.316,0.573l0,0 c-2.367,1.367-3.319,5.23-2.61,10.602c0.76,5.75,3.275,12.549,7.084,19.146c3.81,6.598,8.44,12.176,13.04,15.708 c4.298,3.3,8.119,4.407,10.486,3.04s3.319-5.23,2.61-10.602c-0.76-5.75-3.275-12.549-7.084-19.146 c-3.81-6.598-8.44-12.176-13.04-15.708C25.396,9.419,22.551,8.179,20.316,8.179z"
></path>
<path
class="path2"
d="M10.463,46.972c-0.044,0-0.088-0.003-0.133-0.009l-1.982-0.264 c-0.548-0.073-0.933-0.575-0.859-1.123c0.072-0.548,0.572-0.933,1.123-0.859l1.982,0.264c0.548,0.073,0.933,0.575,0.859,1.123 C11.387,46.606,10.957,46.972,10.463,46.972z"
></path>
<path
class="path2"
d="M8.194,51.885c-0.536,0-0.98-0.426-0.998-0.967c-0.019-0.552,0.413-1.014,0.966-1.032 l1.998-0.067c0.551-0.037,1.015,0.413,1.033,0.966c0.019,0.552-0.413,1.014-0.966,1.032l-1.999,0.067 C8.218,51.885,8.206,51.885,8.194,51.885z"
></path>
<path
class="path2"
d="M9.009,57.093c-0.429,0-0.825-0.277-0.956-0.708c-0.161-0.528,0.136-1.087,0.664-1.248 l1.913-0.584c0.53-0.166,1.088,0.136,1.248,0.664c0.162,0.528-0.136,1.087-0.664,1.248l-1.913,0.584 C9.203,57.079,9.105,57.093,9.009,57.093z"
></path>
<path
class="path2"
d="M11.552,61.852c-0.281,0-0.561-0.118-0.759-0.349c-0.359-0.419-0.312-1.051,0.107-1.41 l1.518-1.303c0.418-0.358,1.049-0.312,1.41,0.107c0.359,0.419,0.312,1.051-0.107,1.41l-1.518,1.303 C12.015,61.772,11.783,61.852,11.552,61.852z"
></path>
<path
class="path2"
d="M55.771,18.718c-0.02,0-0.039-0.001-0.059-0.002l-1.996-0.115 c-0.552-0.031-0.973-0.504-0.94-1.056c0.031-0.551,0.507-0.971,1.056-0.94l1.996,0.115c0.552,0.031,0.973,0.504,0.94,1.056 C56.737,18.307,56.296,18.718,55.771,18.718z"
></path>
<path
class="path2"
d="M53.591,13.797c-0.487,0-0.913-0.355-0.988-0.852c-0.082-0.546,0.295-1.056,0.841-1.138 l1.978-0.297c0.548-0.072,1.056,0.296,1.138,0.841c0.082,0.546-0.295,1.056-0.841,1.138l-1.978,0.297 C53.69,13.793,53.64,13.797,53.591,13.797z"
></path>
<path
class="path2"
d="M52.215,9.336c-0.36,0-0.708-0.194-0.887-0.536c-0.257-0.488-0.067-1.093,0.422-1.35l1.771-0.929 c0.488-0.256,1.093-0.068,1.35,0.422c0.257,0.488,0.067,1.093-0.422,1.35l-1.771,0.929C52.53,9.299,52.371,9.336,52.215,9.336z"
></path>
<path
class="path2"
d="M49.266,5.919c-0.2,0-0.402-0.06-0.578-0.185c-0.45-0.32-0.556-0.944-0.236-1.395l1.158-1.631 c0.32-0.45,0.943-0.557,1.395-0.236c0.45,0.32,0.556,0.944,0.236,1.395l-1.158,1.631C49.887,5.772,49.579,5.919,49.266,5.919z"
></path>
</svg>
</figure>
</figure>
</div>
</section>
<!-- /Home -->
<!-- about -->
<section id="about" class="main-section -grey">
<div class="main-container -grey">
<section class="main-carousel">
<!-- <button class="main-button -arrow -left">
<figure class="content">
<span class="text">Botão Esquerda</span>
</figure>
</button> -->
<div class="main-wrapper -grey -second">
<div class="elements">
<figure class="main-cards -node -one">
<figcaption class="title">2021</figcaption>
<figure target="_blank" class="box -generation quitBox">
<img
src="./assets/images/generation-logo.png"
alt="Logo da Generation Brasil"
class="logo -generation"
/>
</figure>
</figure>
<figure class="main-cards -node -two">
<figcaption class="title">2022</figcaption>
<figure class="box -estacio quitBox">
<img
src="./assets/images/estacio-logo.jpg"
alt="Logo da Estácio"
class="logo -estacio"
/>
</figure>
</figure>
<figure class="main-cards -node -three">
<figcaption class="title">2023</figcaption>
<figure class="box -procenge quitBox">
<img
src="./assets/images/procenge-logo.jpg"
alt="Logo da Procenge"
class="logo -procenge"
/>
</figure>
</figure>
<figure class="main-cards -node -four">
<figcaption class="title">...</figcaption>
<figure class="box -second">
<img
src="./assets/icons/x-icon.png"
alt=""
class="logo -second"
/>
</figure>
</figure>
<figure class="main-cards -node -five">
<figcaption class="title">...</figcaption>
<figure class="box -second">
<img
src="./assets/icons/x-icon.png"
alt=""
class="logo -second"
/>
</figure>
</figure>
</div>
</div>
<!-- <button class="main-button -arrow -right">
<figure class="content">
<span class="text">Botão Direita</span>
</figure>
</button> -->
</section>
<p class="main-text">
<span class="emphasis">Gamer</span>,
<span class="emphasis">geek</span> e
<span class="emphasis">filósofo</span> nas horas vagas, entusiasta
de <span class="emphasis">ciência</span> e
<span class="emphasis">tecnologia</span>, apaixonado por
desenvolvimento de <span class="emphasis">software</span>, alguém
que questiona quando necessário e que não tem medo de errar.
Atualmente
<span class="emphasis">FullStack Developer Júnior</span> e estudante
de
<span class="emphasis">Análise e Desenvolvimento de Sistemas</span>,
<span class="emphasis">Danillo</span> já trabalhou como auxiliar ADM
e prestou serviços em eventos, anda trilhando seu caminho a procura
de novas aventuras e desafios,
<span class="emphasis">Danillo</span> também adora fazer amigos e
quando não está <span class="emphasis">codando</span> ou em busca de
novos projetos, está jogando ou trocando ideia com amigos.
<br /><br /><span class="emphasis -second"
>*passe o cursor nas caixas para ver mais informações*</span
>
</p>
</div>
<div class="main-title -second -s1">
<h2 class="text1">Sobre</h2>
<h2 class="text2">Sobre</h2>
</div>
</section>
<!-- /about -->
<!-- Projects -->
<section id="projects" class="main-section -purple">
<div class="main-container -purple">
<div class="main-wrapper -purple">
<figure class="main-cards -grey">
<img src="./assets/icons/icon-x.png" alt="" />
</figure>
<figure class="main-cards -grey">
<img src="./assets/icons/icon-x.png" alt="" />
</figure>
<figure class="main-cards -grey">
<img src="./assets/icons/icon-x.png" alt="" />
</figure>
</div>
<a
class="main-action -second"
href="https://github.com/Lillow?tab=repositories"
target="_blank"
>Projetos no GitHub</a
>
<!-- <details class="more">
<summary>Ver mais</summary>
</details> -->
</div>
<div class="main-title -second -s2">
<h2 class="text1">Projetos</h2>
<h2 class="text2">Projetos</h2>
</div>
</section>
<!-- /Projects -->
<!-- Skills -->
<section id="skills" class="main-section -grey -second">
<div class="main-container -grey -second" id="skills">
<div class="main-box -purple">
<p class="main-text -second">*passe o cursor no card para ler*</p>
</div>
<div class="main-wrapper -grey" id="skills-cards">
<article class="main-cards -purple -html quitCard">
<figure class="main-figure -second -html">
<img
class="icon1"
src="./assets/icons/html-pixel-art-icon.png"
alt="Logo do HTML em pixel art"
/>
<svg class="icon2" viewBox="0 0 226 226" alt="Logo do HTML">
<g class="stroke">
<path
d="M193.04167,23.54167l-14.125,160.08333l-65.91667,18.83333l-65.91667,-18.83333l-14.125,-160.08333z"
></path>
</g>
<g>
<path
class="path1"
d="M193.04167,23.54167h-160.08333l14.125,160.08333l65.91667,18.83333l65.91667,-18.83333l14.125,-160.08333z"
></path>
<path
class="path2"
d="M113,37.66667v150.19583l52.73333,-15.06667l11.77083,-135.12917z"
></path>
<path
class="path3"
d="M113,117.70833v-18.83333h40.49167l-3.29583,54.14583l-37.19583,12.24167v-19.775l19.30417,-6.59167l1.4125,-21.1875zM154.90417,80.04167l1.4125,-18.83333h-43.31667v18.83333z"
></path>
<path
class="path4"
d="M113,145.4875v19.775l-37.19583,-12.24167l-1.88333,-25.89583h18.83333l0.94167,11.77083zM89.92917,80.04167h23.07083v-18.83333h-42.84583l3.29583,56.5h39.55v-18.83333h-21.65833z"
></path>
</g>
</svg>
</figure>
</article>
<article class="main-cards -purple -css quitCard">
<figure class="main-figure -second -css">
<img
class="icon1"
src="./assets/icons/css-pixel-art-icon.png"
alt="Logo do CSS em pixel art"
/>
<svg class="icon2" viewBox="0 0 172 172" alt="Logo do CSS">
<g class="stroke">
<path
d="M146.91667,17.91667l-10.75,121.83333l-50.16667,14.33333l-50.16667,-14.33333l-10.75,-121.83333z"
></path>
</g>
<g>
<path
class="path1"
d="M146.91667,17.91667h-121.83333l10.75,121.83333l50.16667,14.33333l50.16667,-14.33333l10.75,-121.83333z"
fill="#0277bd"
></path>
<path
class="path2"
d="M86,28.66667v114.30833l40.13333,-11.46667l8.95833,-102.84167z"
fill="#039be5"
></path>
<path
class="path3"
d="M118.60833,46.58333h-32.60833v14.33333h17.55833l-1.075,14.33333h-16.48333v14.33333h15.76667l-1.075,16.125l-14.69167,5.01667v15.05l28.30833,-9.31667l2.50833,-41.20833v0z"
fill="#ffffff"
></path>
<path
class="path4"
d="M86,46.58333v14.33333h-31.89167l-1.075,-14.33333zM69.51667,75.25l0.71667,14.33333h15.76667v-14.33333zM70.95,96.75h-14.33333l1.075,19.70833l28.30833,9.31667v-15.05l-14.69167,-5.01667z"
fill="#eeeeee"
></path>
</g>
<path
d=""
fill="none"
stroke="none"
stroke-width="1"
stroke-linejoin="miter"
></path>
</svg>
</figure>
</article>
<article class="main-cards -purple -js quitCard">
<figure class="main-figure -second -js">
<img
class="icon1"
src="./assets/icons/js-pixel-art-icon.png"
alt="Logo do JavaScript em pixel art"
/>
<svg
class="icon2"
viewBox="0 0 1600 1600"
alt="Logo do JavaScript"
>
<g>
<path
class="path2"
d="M 156.630292 10.626366 L 144.528013 146.255035 C 144.401005 147.672271 143.413532 148.865955 142.044568 149.258226 L 86.921857 164.989361 C 86.61582 165.075127 86.295723 165.120118 85.979376 165.120118 C 85.663029 165.120118 85.342932 165.075127 85.036895 164.989361 L 29.962456 149.258226 C 28.593492 148.865955 27.606019 147.672271 27.478543 146.255035 L 15.369702 10.626366 C 15.283937 9.666545 15.604034 8.710004 16.25735 7.998105 C 16.911134 7.285738 17.829713 6.879876 18.796096 6.879876 L 153.203898 6.879876 C 154.170281 6.879876 155.08886 7.285738 155.742645 7.998105 C 156.39268 8.710004 156.716057 9.666545 156.630292 10.626366 Z M 41.280193 116.784581 L 79.120027 127.279816 L 79.120027 37.840209 L 65.360088 37.840209 L 65.360088 106.454316 L 41.280193 99.773528 Z M 106.639906 79.120027 L 106.639906 51.600148 L 132.973131 51.600148 L 134.159786 37.840209 L 92.879967 37.840209 L 92.879967 96.319952 L 116.959861 92.171349 L 116.099865 105.071292 L 92.879967 111.452605 L 92.879967 127.279816 L 127.279816 117.819857 L 130.90586 75.680042 Z M 106.639906 79.120027 "
transform="matrix(8.334884,0,0,8.334884,83.200002,83.200002)"
/>
<path
class="path1"
d="M 1381.296875 149.863281 C 1375.847656 143.925781 1368.191406 140.542969 1360.136719 140.542969 L 239.863281 140.542969 C 231.808594 140.542969 224.152344 143.925781 218.703125 149.863281 C 213.257812 155.796875 210.589844 163.769531 211.304688 171.769531 L 312.230469 1302.21875 C 313.292969 1314.03125 321.523438 1323.980469 332.933594 1327.25 L 791.972656 1458.367188 C 794.523438 1459.082031 797.191406 1459.457031 799.828125 1459.457031 C 802.464844 1459.457031 805.132812 1459.082031 807.683594 1458.367188 L 1267.125 1327.25 C 1278.535156 1323.980469 1286.765625 1314.03125 1287.824219 1302.21875 L 1388.695312 171.769531 C 1389.410156 163.769531 1386.714844 155.796875 1381.296875 149.863281 Z M 427.265625 914.800781 L 627.96875 970.484375 L 627.96875 398.59375 L 742.65625 398.59375 L 742.65625 1144.0625 L 427.265625 1056.585938 Z M 1174.285156 713.984375 L 1144.0625 1065.214844 L 857.34375 1144.0625 L 857.34375 1012.144531 L 1050.878906 958.957031 L 1058.046875 851.4375 L 857.34375 886.015625 L 857.34375 398.59375 L 1201.40625 398.59375 L 1191.515625 513.28125 L 972.03125 513.28125 L 972.03125 742.65625 Z M 1174.285156 713.984375 "
/>
</g>
</svg>
</figure>
</article>
<article class="main-cards -purple -react quitCard">
<figure class="main-figure -second -react">
<img
class="icon1"
src="./assets/icons/react-pixel-art-icon.png"
alt="Logo do React em pixel art"
/>
<svg class="icon2" viewBox="0 0 80 80" alt="Logo do React">
<path
class="path1"
d="M46.5,40c0,3.593-2.907,6.5-6.5,6.5s-6.5-2.907-6.5-6.5s2.907-6.5,6.5-6.5S46.5,36.407,46.5,40z"
/>
<path
class="path2"
d="M40,47c-3.859,0-7-3.14-7-7s3.141-7,7-7s7,3.14,7,7S43.859,47,40,47z M40,34c-3.309,0-6,2.691-6,6 s2.691,6,6,6s6-2.691,6-6S43.309,34,40,34z"
/>
<g>
<path
class="path1"
d="M24.474,75.503c-1.711,0-3.269-0.392-4.632-1.164c-2.28-1.293-3.856-3.521-4.686-6.62 c-0.965-3.607-0.85-8.398,0.332-13.878C5.956,50.562,0.5,45.531,0.5,40c0-5.532,5.455-10.562,14.987-13.84 c-1.182-5.481-1.298-10.272-0.333-13.879c0.83-3.1,2.406-5.328,4.685-6.62c1.362-0.772,2.921-1.164,4.632-1.164 c4.388,0,9.891,2.73,15.531,7.698c5.64-4.963,11.141-7.691,15.524-7.691c1.711,0,3.269,0.392,4.632,1.164 c2.277,1.291,3.854,3.515,4.684,6.611c0.966,3.606,0.85,8.398-0.333,13.88C74.043,29.437,79.5,34.468,79.5,40 s-5.457,10.563-14.991,13.842c1.182,5.481,1.298,10.272,0.332,13.878c-0.83,3.097-2.405,5.321-4.68,6.612 c-1.364,0.772-2.923,1.164-4.633,1.164c-4.386,0-9.889-2.728-15.527-7.689C34.361,72.774,28.859,75.503,24.474,75.503z M19.337,55.006c-0.991,4.717-1.102,8.747-0.316,11.679c0.542,2.026,1.481,3.431,2.794,4.175c0.753,0.427,1.648,0.644,2.659,0.644 c3.394,0,7.862-2.282,12.621-6.437c-2.385-2.402-4.713-5.121-6.928-8.091C26.336,56.56,22.696,55.898,19.337,55.006z M42.906,65.065c4.758,4.151,9.227,6.431,12.621,6.432c1.011,0,1.906-0.217,2.661-0.644c1.309-0.742,2.246-2.144,2.787-4.167 c0.786-2.934,0.676-6.963-0.315-11.679c-3.362,0.892-7.003,1.554-10.833,1.97C47.613,59.947,45.288,62.665,42.906,65.065z M35.566,57.393c1.452,1.776,2.938,3.433,4.434,4.94c1.492-1.506,2.979-3.163,4.43-4.94C42.939,57.464,41.454,57.5,40,57.5 C38.545,57.5,37.059,57.464,35.566,57.393z M32.349,53.179C34.844,53.392,37.417,53.5,40,53.5c2.585,0,5.155-0.108,7.646-0.32 c1.486-2.084,2.903-4.268,4.214-6.495c1.268-2.155,2.461-4.404,3.547-6.686c-1.083-2.276-2.275-4.524-3.546-6.684 c-1.308-2.222-2.725-4.406-4.215-6.495C45.157,26.608,42.587,26.5,40,26.5c-2.588,0-5.159,0.108-7.647,0.321 c-1.49,2.086-2.909,4.27-4.219,6.495c-1.27,2.159-2.462,4.407-3.546,6.686c1.082,2.274,2.274,4.522,3.545,6.684 C29.437,48.901,30.854,51.084,32.349,53.179z M57.491,44.779c-0.706,1.346-1.438,2.666-2.185,3.934 c-0.753,1.282-1.554,2.568-2.386,3.836c2.374-0.366,4.645-0.835,6.771-1.4C59.101,49.1,58.362,46.963,57.491,44.779z M20.304,51.148c2.127,0.564,4.397,1.034,6.768,1.4c-0.837-1.276-1.638-2.563-2.386-3.835c-0.745-1.267-1.478-2.585-2.183-3.931 C21.636,46.956,20.898,49.091,20.304,51.148z M59.816,40c1.528,3.391,2.773,6.743,3.708,9.977C70.926,47.373,75.5,43.574,75.5,40 s-4.574-7.373-11.976-9.977C62.591,33.257,61.345,36.609,59.816,40z M16.472,30.025C9.073,32.628,4.5,36.427,4.5,40 c0,3.574,4.573,7.373,11.974,9.976c0.934-3.235,2.179-6.587,3.705-9.974C18.652,36.614,17.407,33.262,16.472,30.025z M20.303,28.852c0.594,2.054,1.332,4.19,2.2,6.368c0.704-1.342,1.436-2.661,2.184-3.932c0.752-1.279,1.553-2.565,2.388-3.836 C24.701,27.817,22.431,28.287,20.303,28.852z M52.922,27.451c0.837,1.277,1.638,2.563,2.386,3.837 c0.746,1.267,1.479,2.586,2.185,3.932c0.869-2.177,1.607-4.313,2.201-6.369C57.564,28.286,55.294,27.816,52.922,27.451z M24.471,8.497c-1.011,0-1.905,0.216-2.657,0.644c-1.312,0.744-2.252,2.149-2.795,4.175c-0.785,2.935-0.675,6.964,0.317,11.679 c3.36-0.892,7.002-1.555,10.834-1.971c2.217-2.971,4.545-5.688,6.927-8.088C32.337,10.779,27.866,8.497,24.471,8.497z M49.828,23.023c3.83,0.416,7.471,1.078,10.833,1.97c0.992-4.716,1.103-8.746,0.316-11.68c-0.542-2.022-1.48-3.424-2.79-4.166 c-0.754-0.427-1.649-0.644-2.661-0.644c-3.393,0-7.86,2.281-12.619,6.433C45.287,17.335,47.613,20.053,49.828,23.023z M40,22.5 c1.454,0,2.939,0.036,4.431,0.107c-1.45-1.774-2.936-3.43-4.429-4.938c-1.497,1.51-2.982,3.166-4.432,4.938 C37.061,22.536,38.546,22.5,40,22.5z"
/>
<path
class="path2"
d="M24.471,4.997c4.494,0,9.996,2.91,15.532,7.867c5.535-4.953,11.034-7.86,15.524-7.86 c1.623,0,3.099,0.37,4.386,1.099c2.156,1.222,3.652,3.343,4.446,6.306c1.077,3.917,0.851,8.74-0.434,14.08 C73.147,29.57,79,34.431,79,40s-5.853,10.43-15.076,13.512c1.341,5.773,1.566,10.726,0.434,14.079 c-0.794,2.962-2.289,5.084-4.443,6.306C58.626,74.627,57.455,75,55.833,75c-0.001,0-0.416,0-0.417,0 c-4.492,0-9.882-2.91-15.416-7.861c-5.535,4.956-11.035,7.864-15.527,7.864c-1.623,0-3.099-0.37-4.386-1.099 c-2.158-1.225-3.655-3.349-4.448-6.314c-1.19-3.717-0.95-8.603,0.434-14.079C6.852,50.429,1,45.569,1,40 c0-5.568,5.852-10.429,15.072-13.511C15.385,23.43,14.946,20.59,14.931,18c-0.012-2.046,0.267-3.949,0.707-5.59 c0.794-2.966,2.29-5.09,4.448-6.314C21.372,5.366,22.848,4.997,24.471,4.997 M18.958,25.614c3.477-0.955,7.338-1.677,11.483-2.117 c2.382-3.21,4.875-6.096,7.386-8.584c-4.872-4.346-9.616-6.917-13.356-6.917c-1.099,0-2.075,0.238-2.904,0.709 c-1.433,0.813-2.452,2.32-3.031,4.481C17.678,16.388,17.873,20.716,18.958,25.614 M61.039,25.613 c1.085-4.898,1.28-9.227,0.422-12.429c-0.578-2.157-1.597-3.661-3.027-4.472c-0.83-0.471-1.809-0.709-2.907-0.709 c-3.737,0-8.478,2.568-13.349,6.91c2.51,2.488,5,5.374,7.38,8.583C53.701,23.936,57.562,24.658,61.039,25.613 M34.477,23.166 c1.802-0.107,3.609-0.2,5.488-0.2c1.879,0,3.755,0.094,5.557,0.2c-1.808-2.279-3.664-4.361-5.521-6.204 C38.144,18.805,36.287,20.887,34.477,23.166 M40,54c2.761,0,5.404-0.121,7.918-0.342c1.519-2.117,2.988-4.365,4.372-6.719 c1.353-2.299,2.577-4.626,3.67-6.939c-1.093-2.313-2.317-4.639-3.669-6.937c-1.385-2.355-2.853-4.602-4.373-6.719 C45.405,26.121,42.762,26,40,26s-5.406,0.121-7.92,0.343c-1.521,2.117-2.991,4.365-4.376,6.719 c-1.352,2.299-2.576,4.626-3.669,6.939c1.093,2.313,2.316,4.639,3.668,6.937c1.385,2.354,2.854,4.602,4.374,6.719 C34.592,53.879,37.237,54,40,54 M57.546,36.413c1.125-2.709,2.056-5.369,2.766-7.913c-2.553-0.702-5.373-1.282-8.428-1.707 c1.028,1.527,2.029,3.11,2.992,4.748C55.83,33.16,56.717,34.788,57.546,36.413 M22.449,36.414c0.828-1.625,1.716-3.253,2.668-4.873 c0.964-1.638,1.966-3.22,2.995-4.747c-3.055,0.424-5.875,1.005-8.428,1.707C20.394,31.045,21.325,33.704,22.449,36.414 M63.188,50.622C71.264,47.886,76,43.866,76,40s-4.736-7.886-12.812-10.622c-0.953,3.405-2.269,6.983-3.92,10.621 C60.919,43.638,62.235,47.216,63.188,50.622 M16.81,50.621c0.952-3.404,2.267-6.982,3.918-10.619 c-1.651-3.638-2.967-7.217-3.919-10.622C8.734,32.116,4,36.135,4,40C4,43.866,8.735,47.885,16.81,50.621 M51.884,53.207 c3.055-0.424,5.875-1.004,8.428-1.707c-0.711-2.544-1.642-5.204-2.766-7.914c-0.829,1.625-1.717,3.253-2.67,4.873 C53.913,50.097,52.912,51.68,51.884,53.207 M28.109,53.206c-1.028-1.527-2.029-3.109-2.993-4.746 c-0.952-1.619-1.839-3.246-2.667-4.87c-1.124,2.708-2.054,5.367-2.764,7.91C22.237,52.201,25.056,52.781,28.109,53.206 M24.474,72.003c3.739,0,8.481-2.57,13.352-6.914c-2.513-2.489-5.005-5.376-7.388-8.587c-4.143-0.439-8.002-1.161-11.478-2.116 c-1.084,4.898-1.279,9.226-0.422,12.428c0.578,2.16,1.598,3.667,3.03,4.48C22.396,71.765,23.375,72.003,24.474,72.003 M55.527,71.997L55.527,71.997c1.099,0,2.076-0.238,2.907-0.709c1.43-0.811,2.447-2.315,3.024-4.473 c0.858-3.203,0.663-7.531-0.421-12.428c-3.477,0.955-7.337,1.677-11.481,2.116c-2.38,3.21-4.871,6.096-7.381,8.585 C47.046,69.428,51.788,71.996,55.527,71.997 M40,63.04c1.857-1.844,3.713-3.927,5.522-6.206c-1.801,0.107-3.559,0.333-5.439,0.333 c-1.881,0-3.807-0.226-5.609-0.333C36.284,59.114,38.142,61.197,40,63.04 M24.116,4.072c-1.799,0-3.085,0.338-4.523,1.153 c-2.399,1.361-4.055,3.691-4.921,6.926c-0.96,3.587-0.877,8.302,0.236,13.681C5.419,29.189,0,34.325,0,40 c0,5.676,5.42,10.811,14.909,14.168c-1.113,5.379-1.196,10.094-0.235,13.681c0.865,3.233,2.52,5.563,4.921,6.926 c1.44,0.816,3.17,1.163,4.968,1.163c4.487,0,9.753-2.535,15.438-7.466c5.684,4.926,11.039,7.524,15.525,7.525 c1.799,0,3.441-0.413,4.881-1.229c2.397-1.359,4.051-3.686,4.916-6.917c0.961-3.588,0.878-8.303-0.235-13.681 C74.579,50.812,80,45.676,80,40s-5.42-10.812-14.911-14.169c1.114-5.38,1.196-10.095,0.235-13.682 c-0.866-3.231-2.521-5.558-4.919-6.917c-1.439-0.815-3.081-1.229-4.879-1.229c-4.485,0-9.839,2.599-15.524,7.527 c-5.686-4.932-11.066-7.461-15.554-7.461L24.116,4.072z M19.72,24.377c-0.462-2.324-0.772-4.502-0.789-6.412 c-0.015-1.72,0.221-3.217,0.57-4.521c0.507-1.892,1.368-3.194,2.559-3.87c0.676-0.384,1.5-0.644,2.423-0.644 c3.181,0,7.367,2.178,11.883,6.034c-2.221,2.273-4.392,4.819-6.466,7.585C26.315,22.949,22.897,23.562,19.72,24.377L19.72,24.377z M43.638,14.966c4.515-3.853,8.711-5.963,11.888-5.963c0.924,0,1.737,0.195,2.414,0.579c1.189,0.674,2.049,1.973,2.555,3.861 c0.874,2.818,0.761,6.564-0.218,10.933c-3.177-0.814-6.594-1.428-10.178-1.826C48.026,19.785,45.857,17.239,43.638,14.966 L43.638,14.966z M36.673,22.06c1.096-1.3,2.209-2.53,3.328-3.678c1.119,1.148,2.231,2.378,3.326,3.678 C42.208,22.02,41.095,22,40,22S37.793,22.02,36.673,22.06L36.673,22.06z M32.625,27.3c2.405-0.199,4.883-0.341,7.375-0.341 c2.491,0,4.969,0.142,7.373,0.341c1.432,2.019,2.796,4.126,4.056,6.269c1.222,2.078,2.373,4.239,3.423,6.43 c-1.051,2.192-2.202,4.354-3.424,6.432c-1.261,2.144-2.624,4.25-4.056,6.269c-2.403,0.199-4.881,0.466-7.372,0.466 c-2.493,0-4.972-0.268-7.378-0.467c-1.433-2.018-2.797-4.125-4.058-6.269c-1.222-2.077-2.372-4.238-3.422-6.43 c1.05-2.192,2.201-4.354,3.423-6.432C29.827,31.425,31.192,29.318,32.625,27.3L32.625,27.3z M57.422,34.024 c-0.549-1.018-1.112-2.018-1.683-2.99c-0.57-0.969-1.167-1.942-1.785-2.909c1.774,0.302,3.485,0.663,5.114,1.08 C58.601,30.771,58.05,32.383,57.422,34.024L57.422,34.024z M20.928,29.205c1.629-0.417,3.34-0.778,5.114-1.08 c-0.619,0.967-1.216,1.94-1.786,2.908c-0.571,0.972-1.134,1.972-1.683,2.99C21.945,32.384,21.395,30.772,20.928,29.205 L20.928,29.205z M60.365,39.999c1.415-3.162,2.587-6.292,3.49-9.326C70.758,33.192,75,36.721,75,40s-4.242,6.808-11.145,9.327 C62.951,46.292,61.78,43.161,60.365,39.999L60.365,39.999z M16.142,49.326C9.241,46.807,5,43.278,5,40s4.241-6.807,11.141-9.326 c0.903,3.035,2.074,6.165,3.489,9.327C18.216,43.162,17.045,46.292,16.142,49.326L16.142,49.326z M53.953,51.876 c0.618-0.968,1.216-1.941,1.785-2.909c0.572-0.972,1.135-1.973,1.684-2.991c0.628,1.641,1.178,3.254,1.646,4.821 C57.438,51.212,55.727,51.574,53.953,51.876L53.953,51.876z M20.929,50.795c0.467-1.566,1.017-3.177,1.644-4.816 c0.548,1.017,1.111,2.017,1.682,2.988c0.569,0.968,1.166,1.94,1.785,2.908C24.267,51.572,22.557,51.211,20.929,50.795 L20.929,50.795z M24.474,71.003c-0.924,0-1.736-0.195-2.413-0.579c-1.19-0.676-2.051-1.977-2.557-3.869 c-0.831-2.845-0.737-6.592,0.218-10.933c3.176,0.814,6.592,1.428,10.175,1.826c2.075,2.766,4.246,5.313,6.468,7.588 C31.85,68.893,27.653,71.004,24.474,71.003L24.474,71.003L24.474,71.003z M50.098,57.45c3.584-0.399,7.001-1.012,10.178-1.826 c1.105,4.74,1.192,8.518,0.217,10.932c-0.505,1.889-1.364,3.188-2.552,3.861c-0.678,0.384-1.49,0.579-2.413,0.579v1l-0.001-1 c-3.18,0-7.377-2.11-11.891-5.961C45.856,62.762,48.025,60.216,50.098,57.45L50.098,57.45z M40,61.62 c-1.12-1.148-2.234-2.379-3.33-3.68C37.79,57.98,38.904,58,40,58c1.095,0,2.208-0.02,3.327-0.06 C42.232,59.241,41.119,60.472,40,61.62L40,61.62z"
/>
</g>
</svg>
</figure>
</article>
<article class="main-cards -purple -java quitCard">
<figure class="main-figure -second -java">
<img
class="icon1"
src="./assets/icons/java-pixel-art-icon.png"
alt="Logo do Java em pixel art"
/>
<svg class="icon2" alt="Logo do Java" viewBox="0 0 48 48">
<path
class="path1"
d="M23.65,24.898c-0.998-1.609-1.722-2.943-2.725-5.455C19.229,15.2,31.24,11.366,26.37,3.999c2.111,5.089-7.577,8.235-8.477,12.473C17.07,20.37,23.645,24.898,23.65,24.898z"
/>
<path
class="path1"
d="M23.878,17.27c-0.192,2.516,2.229,3.857,2.299,5.695c0.056,1.496-1.447,2.743-1.447,2.743s2.728-0.536,3.579-2.818c0.945-2.534-1.834-4.269-1.548-6.298c0.267-1.938,6.031-5.543,6.031-5.543S24.311,11.611,23.878,17.27z"
/>
<g>
<path
class="path2"
d="M32.084 25.055c1.754-.394 3.233.723 3.233 2.01 0 2.901-4.021 5.643-4.021 5.643s6.225-.742 6.225-5.505C37.521 24.053 34.464 23.266 32.084 25.055zM29.129 27.395c0 0 1.941-1.383 2.458-1.902-4.763 1.011-15.638 1.147-15.638.269 0-.809 3.507-1.638 3.507-1.638s-7.773-.112-7.773 2.181C11.683 28.695 21.858 28.866 29.129 27.395z"
/>
<path
class="path2"
d="M27.935,29.571c-4.509,1.499-12.814,1.02-10.354-0.993c-1.198,0-2.974,0.963-2.974,1.889c0,1.857,8.982,3.291,15.63,0.572L27.935,29.571z"
/>
<path
class="path2"
d="M18.686,32.739c-1.636,0-2.695,1.054-2.695,1.822c0,2.391,9.76,2.632,13.627,0.205l-2.458-1.632C24.271,34.404,17.014,34.579,18.686,32.739z"
/>
<path
class="path2"
d="M36.281,36.632c0-0.936-1.055-1.377-1.433-1.588c2.228,5.373-22.317,4.956-22.317,1.784c0-0.721,1.807-1.427,3.477-1.093l-1.42-0.839C11.26,34.374,9,35.837,9,37.017C9,42.52,36.281,42.255,36.281,36.632z"
/>
<path
class="path2"
d="M39,38.604c-4.146,4.095-14.659,5.587-25.231,3.057C24.341,46.164,38.95,43.628,39,38.604z"
/>
</g>
</svg>
</figure>
</article>
<article class="main-cards -purple"></article>
<article class="main-cards -purple"></article>
<article class="main-cards -purple"></article>
</div>
</div>
<div class="main-title -second">
<h2 class="text1" lang="en">Skills</h2>
<h2 class="text2" lang="en">Skills</h2>
</div>
</section>
<!-- /Skills -->
<!--Contact-->
<input class="state" id="contact" type="checkbox" />
<div class="main-modal">
<label class="bg" for="contact"></label>
<div class="main-box -grey -inner">
<label class="close" for="contact"></label>
<div class="main-title -second">
<h2 class="text1">Contato</h2>
<h2 class="text2">Contato</h2>
</div>
<form class="main-form" name="contact" accept-charset="utf-8">
<div class="main-title -second">
<h1 class="text1 -second">Em desenvolvimento!</h1>
</div>
<label class="label" for="name">Nome </label>
<input
class="input"
name="name"
id="name"
type="text"
placeholder="Ex.: Pedro"
/>
<label class="label" for="email">Email</label>
<input
class="input"
name="email"
id="email"
type="email"
placeholder="Ex.: [email protected]"
/>
<label class="label" for="message">Mensagem</label>
<textarea
class="input -second"
name="message"
id="message"
type="text"
placeholder="Digite a mensagem aqui"
></textarea>
<div class="navigation">
<label class="main-button -second" for="contact" type="submit"
>Enviar</label
>
</div>
</form>
</div>
</div>
<!--/Contact-->
<!-- Footer -->
<footer class="main-footer">
<div class="social">
<a
class="link -github"
href="https://github.com/Lillow"
target="_blank"
>
<svg viewBox="0 0 24 24" class="svg -github">
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
<a
class="link -instagram"
href="https://www.instagram.com/danillordm19/"
target="_blank"
>
<svg
viewBox="0 0 24 24"
stroke-linecap="round"
class="svg -instagram"
>
<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>
</svg>
</a>
<a
class="link -linkedin"
href="https://www.linkedin.com/in/danillo-silva/"
target="_blank"
>
<svg viewBox="0 0 24 24" class="svg -linkedin">
<path
d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
</a>
</div>
<p class="copyright">©2022 lillow.com</p>
</footer>
<!-- /Footer -->
</main>
<script src="./js/components/main-mobilemenu.js"></script>
<script src="./js/components/main-carousel.js"></script>
<script src="./js/components/main-wrapper.js"></script>
<script src="./js/components/main-subtitle.js"></script>
</body>
</html>