forked from CRISTIAN-D-L/ProT1-29641032
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EJERCICIO5.html
1698 lines (1640 loc) · 218 KB
/
EJERCICIO5.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
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
<!DOCTYPE html>
<!-- saved from url=(0045)https://codepen.io/Cristian-Lujan/pen/oNRzBMB -->
<html lang="es" data-theme="dark" class="pc chrome125 js translated-ltr"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>EJERCICIO5</title>
<link rel="dns-prefetch" href="https://apc.codepen.io/">
<style type="text/css">@font-face {font-family:Lato;font-style:normal;font-weight:400;src:url(/cf-fonts/s/lato/5.0.18/latin/400/normal.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:400;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/400/normal.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:700;src:url(/cf-fonts/s/lato/5.0.18/latin/700/normal.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:700;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/700/normal.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:900;src:url(/cf-fonts/s/lato/5.0.18/latin/900/normal.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:900;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/900/normal.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:italic;font-weight:400;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/400/italic.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:italic;font-weight:400;src:url(/cf-fonts/s/lato/5.0.18/latin/400/italic.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:italic;font-weight:700;src:url(/cf-fonts/s/lato/5.0.18/latin/700/italic.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:italic;font-weight:700;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/700/italic.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:italic;font-weight:900;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/900/italic.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:italic;font-weight:900;src:url(/cf-fonts/s/lato/5.0.18/latin/900/italic.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}</style>
<meta name="twitter:title" content="EJERCICIO5">
<meta name="twitter:description" content="...">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://shots.codepen.io/username/pen/oNRzBMB-800.jpg?version=1716599526">
<meta property="og:image" content="https://shots.codepen.io/username/pen/oNRzBMB-800.jpg?version=1716599526" itemprop="thumbnailUrl">
<meta property="og:title" content="EJERCICIO5">
<meta property="og:url" content="https://codepen.io/Cristian-Lujan/details/oNRzBMB">
<meta property="og:description" content="...">
<link rel="alternate" type="application/json+oembed" href="https://codepen.io/api/oembed?url=https%3A%2F%2Fcodepen.io%2FCristian-Lujan%2Fpen%2FoNRzBMB&format=json" title="EJERCICIO5">
<link rel="stylesheet" media="all" href="./EJERCICIO5_files/global-3a4a990a70ef460949c7465c2b4650349b32ef853ab45577c9a8ea028bb6ae18.css">
<link rel="stylesheet" media="screen" href="./EJERCICIO5_files/everypage-2ce4e143.css">
<link rel="stylesheet" media="all" href="./EJERCICIO5_files/editor-412b53d66e70d4033d9c92eb04f752ec10a719e6e2197f91911579ed874c108c.css">
<meta name="description" content="...">
<link rel="stylesheet" media="screen" href="./EJERCICIO5_files/twilight-8ea74c444cf457f9a50f818792c3de6bb5f118202377c4fb1b7b1cc973b4070c.css" id="cm-theme">
<style id="cm-font-family" class="cm-font-family" nonce="">
.CodeMirror,
.console-logs .console-line,
.console-command-line-input,
.console-message,
.CodeMirror-hint {
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo,
monospace;
}
</style>
<style id="cm-font-size" nonce="">
.CodeMirror,
.console-logs .console-line,
.console-command-line-input,
.console-message,
.CodeMirror-hint {
font-size: 15px;
}
</style>
<link rel="apple-touch-icon" type="image/png" href="https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png">
<meta name="apple-mobile-web-app-title" content="CodePen">
<link rel="shortcut icon" type="image/x-icon" href="https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico">
<link rel="mask-icon" type="image/x-icon" href="https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg" color="#111">
<meta name="csrf-param" content="authenticity_token">
<meta name="csrf-token" content="JjfyF9pxx5qw6ogl6lf1Lh9j9ygX2trkl/T/UnIWWzkIv/Qk30pX77+fbVoVcSnbwqnbWqRqjY4XUbXdbmoFJw==">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<style id="_goober"> @keyframes go2264125279{from{transform:scale(0) rotate(45deg);opacity:0;}to{transform:scale(1) rotate(45deg);opacity:1;}}@keyframes go3020080000{from{transform:scale(0);opacity:0;}to{transform:scale(1);opacity:1;}}@keyframes go463499852{from{transform:scale(0) rotate(90deg);opacity:0;}to{transform:scale(1) rotate(90deg);opacity:1;}}@keyframes go1268368563{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}@keyframes go1310225428{from{transform:scale(0) rotate(45deg);opacity:0;}to{transform:scale(1) rotate(45deg);opacity:1;}}@keyframes go651618207{0%{height:0;width:0;opacity:0;}40%{height:0;width:6px;opacity:1;}100%{opacity:1;height:10px;}}@keyframes go901347462{from{transform:scale(0.6);opacity:0.4;}to{transform:scale(1);opacity:1;}}.go4109123758{z-index:9999;}.go4109123758 > *{pointer-events:auto;}.go2072408551{display:flex;align-items:center;background:#fff;color:#363636;line-height:1.3;will-change:transform;box-shadow:0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);max-width:350px;pointer-events:auto;padding:8px 10px;border-radius:8px;}.go3958317564{display:flex;justify-content:center;margin:4px 10px;color:inherit;flex:1 1 auto;white-space:pre-line;}@keyframes go3223188581{0%{transform:translate3d(0,-200%,0) scale(.6);opacity:.5;}100%{transform:translate3d(0,0,0) scale(1);opacity:1;}}@keyframes go502128938{0%{transform:translate3d(0,0,-1px) scale(1);opacity:1;}100%{transform:translate3d(0,-150%,-1px) scale(.6);opacity:0;}}.go685806154{position:relative;display:flex;justify-content:center;align-items:center;min-width:20px;min-height:20px;}.go3498335659{width:12px;height:12px;box-sizing:border-box;border:2px solid;border-radius:100%;border-color:var(--cp-color--14);border-right-color:var(--cp-color-green);animation:go1268368563 1s linear infinite;}.go1579819456{position:absolute;}.go3494447809{width:20px;opacity:0;height:20px;border-radius:10px;background:var(--cp-color-green);position:relative;transform:rotate(45deg);animation:go1310225428 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;animation-delay:100ms;}.go3494447809:after{content:'';box-sizing:border-box;animation:go651618207 0.2s ease-out forwards;opacity:0;animation-delay:200ms;position:absolute;border-right:2px solid;border-bottom:2px solid;border-color:var(--cp-color--14);bottom:6px;left:6px;height:10px;width:6px;}</style><link type="text/css" rel="stylesheet" charset="UTF-8" href="./EJERCICIO5_files/m=el_main_css"></head>
<body class="room-editor editor state-htmlOn-cssOn-jsOn twilight layout-top logged-in">
<header class="main-header" id="main-header"><div class="EditorHeader-module_root-cpo0V header-wrap HeaderWrap-module_root-PsKVw"><div class="Logo-module_root-ojP5q" data-component="Logo" data-test-id="logo"><a href="https://codepen.io/" class="Logo-module_small-T4UEU"><svg viewBox="0 0 100 100" aria-hidden="true"><path d="M100 34.2c-.4-2.6-3.3-4-5.3-5.3-3.6-2.4-7.1-4.7-10.7-7.1-8.5-5.7-17.1-11.4-25.6-17.1-2-1.3-4-2.7-6-4-1.4-1-3.3-1-4.8 0-5.7 3.8-11.5 7.7-17.2 11.5L5.2 29C3 30.4.1 31.8 0 34.8c-.1 3.3 0 6.7 0 10v16c0 2.9-.6 6.3 2.1 8.1 6.4 4.4 12.9 8.6 19.4 12.9 8 5.3 16 10.7 24 16 2.2 1.5 4.4 3.1 7.1 1.3 2.3-1.5 4.5-3 6.8-4.5 8.9-5.9 17.8-11.9 26.7-17.8l9.9-6.6c.6-.4 1.3-.8 1.9-1.3 1.4-1 2-2.4 2-4.1V37.3c.1-1.1.2-2.1.1-3.1 0-.1 0 .2 0 0zM54.3 12.3 88 34.8 73 44.9 54.3 32.4V12.3zm-8.6 0v20L27.1 44.8 12 34.8l33.7-22.5zM8.6 42.8 19.3 50 8.6 57.2V42.8zm37.1 44.9L12 65.2l15-10.1 18.6 12.5v20.1zM50 60.2 34.8 50 50 39.8 65.2 50 50 60.2zm4.3 27.5v-20l18.6-12.5 15 10.1-33.6 22.4zm37.1-30.5L80.7 50l10.8-7.2-.1 14.4z"></path></svg><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Inicio de CodePen</font></font></span></a><a href="https://codepen.io/" class="Logo-module_large-J2pKy"><svg viewBox="0 0 138 26" fill="none" stroke="#fff" stroke-width="2.3" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M15 8a7 7 0 1 0 0 10m7-8.7L33 2l11 7.3v7.4L33 24l-11-7.3zm0 0 11 7.4 11-7.4m0 7.4L33 9.3l-11 7.4M33 2v7.3m0 7.4V24M52 6h5a7 7 0 0 1 0 14h-5zm28 0h-9v14h9m-9-7h6m11 1h6a4 4 0 0 0 0-8h-6v14m26-14h-9v14h9m-9-7h6m11 7V6l11 14V6"></path></svg><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Inicio de CodePen</font></font></span></a></div><div class="ItemTitle_root-BLXtW" data-test-id="item-title-area"><div class="ItemTitle_text-t2tKF" data-view="pen"><h1 class="ItemTitle_title-skUR3" id="item-title"><a href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB" class="ItemTitle_titleLink-dPGjg" id="editable-title-span" title="EJERCICIO5"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">EJERCICIO5</font></font></a><svg viewBox="0 0 100 100" class="ItemTitle_iconEdit-rW2EJ"><path d="M24.56 92.536 0 100l7.453-24.583c6.356-.244 17.322 10.792 17.107 17.119zM96.617 32.082l-.475.471L67.383 3.766l.472-.472c12.927-12.94 42.016 15.517 28.762 28.788zM61.64 9.516l28.758 28.785-46.303 46.345c-1.222 1.221-2.234.884-2.234.884l2.314-15.356-14.454.074.072-14.468-15.342 2.312s-.34-1.011.883-2.234L61.64 9.516z"></path></svg></h1><div class="ItemTitle_by-typsS" data-test="AnItemBy"><a class="ItemTitle_ownerLink-L8qgY" href="https://codepen.io/Cristian-Lujan"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Cristian Luján</font></font> </a></div></div></div><button title="Amar" data-anon="false" data-view="pen" data-love-level="0" data-item="Pen" data-hashid="oNRzBMB" class="Button-module_root-xw+9D EditorHeaderPen-module_loveButton-7F910 loves heart-button"><svg viewBox="-2 0 105 92" class="LoveButtonIcon-module_root-3tVfn" data-love-level="0"><path d="M85.24 2.67C72.29-3.08 55.75 2.67 50 14.9 44.25 2 27-3.8 14.76 2.67 1.1 9.14-5.37 25 5.42 44.38 13.33 58 27 68.11 50 86.81 73.73 68.11 87.39 58 94.58 44.38c10.79-18.7 4.32-35.24-9.34-41.71Z"></path></svg><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Amar</font></font></span></button><div class="EditorHeaderPen-module_navigationWrap-4Dq5Z"><button aria-expanded="false" data-open="false" class="Button-module_root-xw+9D EditorHeaderPen-module_toggleActionsButton-E+eAn MobileNavButton-module_root-EApZk" data-size="mini" style="height: 35px; padding: 1px 3px 3px 7px; border-radius: 4px; margin-left: 8px; margin-right: 8px;"><div class="MobileNavButton-module_icon-uF4CA" aria-hidden="true"><span></span><svg viewBox="-122.9 121.1 105.9 61.9"><path d="m-63.2 180.3 43.5-43.5c1.7-1.7 2.7-4 2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8 1-6.5 2.7L-69.9 161l-37.2-37.2c-1.7-1.7-4-2.7-6.5-2.7s-4.8 1-6.5 2.6c-1.9 1.8-2.8 4.2-2.8 6.6 0 2.3.9 4.6 2.6 6.5 11.4 11.5 41 41.2 43 43.3l.2.2c3.6 3.6 10.3 3.6 13.9 0z"></path></svg></div><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Menú del editor de lápiz</font></font></span></button><div aria-hidden="false" class="EditorHeaderPen-module_editorActions-76b6L" data-expanded="false"><button id="run" title="Com/Ctrl - Mayús - 7 para ejecutar" class="Button-module_root-xw+9D run" data-has-icon="true"><svg viewBox="0 0 20 20"><path d="M10.66 1.91a.833.833 0 0 1 1.18 0l2.5 2.5a.833.833 0 0 1 0 1.18l-2.5 2.5a.833.833 0 1 1-1.18-1.18l1.078-1.077h-1.321C7.46 5.833 5 8.293 5 11.25c0 2.956 2.46 5.417 5.417 5.417 2.956 0 5.416-2.46 5.416-5.417a.833.833 0 1 1 1.667 0c0 3.877-3.207 7.083-7.083 7.083-3.877 0-7.084-3.206-7.084-7.083 0-3.877 3.207-7.083 7.084-7.083h1.321l-1.077-1.078a.833.833 0 0 1 0-1.178Z"></path></svg><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Correr</font></font></button><button data-test-id="save-button" id="update" class="Button-module_root-xw+9D EditorHeaderPenSaveButtonWithDropdown-module_mobileButton-qWD6- unsaved-grow" data-has-icon="true" data-align="start"><svg viewBox="0 0 100 100"><path d="M84.187 44.046c.084-.753.114-1.52.114-2.289 0-13.402-10.814-24.257-24.154-24.257-10.354 0-19.161 6.551-22.599 15.754-2.274-2.508-5.521-4.111-9.166-4.111-6.872 0-12.439 5.59-12.439 12.493 0 .816.084 1.606.239 2.38C7.014 45.534 0 53.472 0 63.095 0 73.824 8.648 82.5 19.323 82.5h61.354C91.351 82.5 100 73.824 100 63.095c0-9.505-6.823-17.38-15.813-19.049z"></path></svg><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Ahorrar</font></font></button><span class="ButtonGroup-module_root-RfSlH EditorHeaderPenSaveButtonWithDropdown-module_root-LGUql"><button data-test-id="save-button" id="update" class="Button-module_root-xw+9D EditorHeaderPenSaveButtonWithDropdown-module_button-VHLNu unsaved-grow" data-has-icon="true"><svg viewBox="0 0 100 100"><path d="M84.187 44.046c.084-.753.114-1.52.114-2.289 0-13.402-10.814-24.257-24.154-24.257-10.354 0-19.161 6.551-22.599 15.754-2.274-2.508-5.521-4.111-9.166-4.111-6.872 0-12.439 5.59-12.439 12.493 0 .816.084 1.606.239 2.38C7.014 45.534 0 53.472 0 63.095 0 73.824 8.648 82.5 19.323 82.5h61.354C91.351 82.5 100 73.824 100 63.095c0-9.505-6.823-17.38-15.813-19.049z"></path></svg><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Ahorrar</font></font></button><span class="DropdownControlled-module_root-3ewM0 ButtonWithDropdown-module_dropdown-FsFiR" data-direction="bottom left" data-open="false"><button aria-label="Opciones de guardado" aria-haspopup="menu" aria-expanded="false" aria-controls="oc-1716599620956" class="Button-module_root-xw+9D ButtonWithDropdownTrigger-module_root-QUiLE"><svg viewBox="-122.9 121.1 105.9 61.9" class="ButtonWithDropdownTrigger-module_icon-BjxRt DropdownArrowIcon-module_icon-w0Zif"><path d="m-63.2 180.3 43.5-43.5c1.7-1.7 2.7-4 2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8 1-6.5 2.7L-69.9 161l-37.2-37.2c-1.7-1.7-4-2.7-6.5-2.7s-4.8 1-6.5 2.6c-1.9 1.8-2.8 4.2-2.8 6.6 0 2.3.9 4.6 2.6 6.5 11.4 11.5 41 41.2 43 43.3l.2.2c3.6 3.6 10.3 3.6 13.9 0z"></path></svg></button><div class="DropdownControlled-module_content-mxnG0" id="oc-1716599620956" role="menu" data-open="false" hidden="" data-direction="bottom left"></div></span></span><button data-test-id="edit-settings" id="edit-settings" title="Configuración del lápiz" class="Button-module_root-xw+9D" data-has-icon="true"><svg viewBox="0 0 100 100"><path d="M87.687 45.077c-.313-2.433-.816-4.807-1.542-7.079l8.145-11.73-5.827-7.515-.094-.123-5.824-7.514-12.955 5.577c-2.041-1.265-4.192-2.362-6.459-3.219L59.42 0H40.586l-3.709 13.474c-2.27.857-4.421 1.955-6.463 3.222l-12.957-5.577-5.825 7.514-.097.124-5.822 7.517 8.146 11.731a39.832 39.832 0 0 0-1.544 7.079L0 52.032l2.08 9.375.033.15 2.08 9.375 14.001.761a39.157 39.157 0 0 0 4.4 5.668l-2.396 14.227 8.416 4.173.138.067L37.169 100l9.309-10.796c1.161.109 2.335.173 3.524.173s2.358-.074 3.52-.184l9.317 10.804 8.415-4.173.141-.066 8.413-4.172-2.396-14.228a39.06 39.06 0 0 0 4.4-5.672l14-.759 2.078-9.375.035-.154L100 52.025l-12.313-6.948zM50.003 34.51c8.435 0 15.272 7.035 15.272 15.719 0 8.679-6.839 15.717-15.272 15.717-8.436 0-15.272-7.038-15.272-15.717 0-8.684 6.838-15.719 15.272-15.719z"></path></svg><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Ajustes</font></font></button><span class="DropdownControlled-module_root-3ewM0 EditorHeaderViewSwitcher_root-kz6-q" data-direction="bottom left" data-open="false"><button id="view-switcher-button" data-test-id="view-switcher-button" title="Cambio Vista" aria-haspopup="menu" aria-expanded="false" aria-controls="oc-1716599620957" class="Button-module_root-xw+9D"><svg viewBox="0 0 20 20" class="EditorHeaderViewSwitcher_iconPen-jP26l"><path d="M0 9.002C0 8.45.455 8 .992 8h18.016c.548 0 .992.456.992 1.002v9.996c0 .553-.455 1.002-.992 1.002H.992C.444 20 0 19.544 0 18.998V9.002Zm0-8C0 .45.451 0 .99 0h4.02A.99.99 0 0 1 6 1.003v4.994C6 6.551 5.549 7 5.01 7H.99A.99.99 0 0 1 0 5.997V1.003Zm7 0C7 .45 7.451 0 7.99 0h4.02A.99.99 0 0 1 13 1.003v4.994C13 6.551 12.549 7 12.01 7H7.99A.99.99 0 0 1 7 5.997V1.003Zm7 0C14 .45 14.451 0 14.99 0h4.02A.99.99 0 0 1 20 1.003v4.994C20 6.551 19.549 7 19.01 7h-4.02A.99.99 0 0 1 14 5.997V1.003Z"></path></svg></button><div class="DropdownControlled-module_content-mxnG0" id="oc-1716599620957" role="menu" data-open="false" hidden="" data-direction="bottom left"><div class="DropdownContent-module_root-rQ0al view-switcher EditorHeaderViewSwitcher_dropdown-Qhuhu"><h3><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Cambio Vista</font></font></h3><div class="ButtonGroup-module_root-RfSlH EditorHeaderViewSwitcher_switch-thcS- view-switcher-layout EditorHeaderViewSwitcherLayoutButtons-module_buttonGroup-SZ+7j" id="view-switcher-buttons"><button id="left-layout" data-layout-type="left" class="Button-module_root-xw+9D"><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Usar diseño izquierdo</font></font></span><svg viewBox="0 0 20 20" class="EditorHeaderViewSwitcherLayoutButtons-module_newPenLeftLayout-PhHzQ" width="20" height="20"><path d="M0 9.002C0 8.45.455 8 .992 8h18.016c.548 0 .992.456.992 1.002v9.996c0 .553-.455 1.002-.992 1.002H.992C.444 20 0 19.544 0 18.998V9.002Zm0-8C0 .45.451 0 .99 0h4.02A.99.99 0 0 1 6 1.003v4.994C6 6.551 5.549 7 5.01 7H.99A.99.99 0 0 1 0 5.997V1.003Zm7 0C7 .45 7.451 0 7.99 0h4.02A.99.99 0 0 1 13 1.003v4.994C13 6.551 12.549 7 12.01 7H7.99A.99.99 0 0 1 7 5.997V1.003Zm7 0C14 .45 14.451 0 14.99 0h4.02A.99.99 0 0 1 20 1.003v4.994C20 6.551 19.549 7 19.01 7h-4.02A.99.99 0 0 1 14 5.997V1.003Z"></path></svg></button><button id="top-layout" data-layout-type="top" class="Button-module_root-xw+9D"><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Usar diseño superior</font></font></span><svg viewBox="0 0 20 20" width="20" height="20"><path d="M0 9.002C0 8.45.455 8 .992 8h18.016c.548 0 .992.456.992 1.002v9.996c0 .553-.455 1.002-.992 1.002H.992C.444 20 0 19.544 0 18.998V9.002Zm0-8C0 .45.451 0 .99 0h4.02A.99.99 0 0 1 6 1.003v4.994C6 6.551 5.549 7 5.01 7H.99A.99.99 0 0 1 0 5.997V1.003Zm7 0C7 .45 7.451 0 7.99 0h4.02A.99.99 0 0 1 13 1.003v4.994C13 6.551 12.549 7 12.01 7H7.99A.99.99 0 0 1 7 5.997V1.003Zm7 0C14 .45 14.451 0 14.99 0h4.02A.99.99 0 0 1 20 1.003v4.994C20 6.551 19.549 7 19.01 7h-4.02A.99.99 0 0 1 14 5.997V1.003Z"></path></svg></button><button id="right-layout" data-layout-type="right" class="Button-module_root-xw+9D"><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Utilice el diseño correcto</font></font></span><svg viewBox="0 0 20 20" class="EditorHeaderViewSwitcherLayoutButtons-module_newPenRightLayout-X2VCi" width="20" height="20"><path d="M0 9.002C0 8.45.455 8 .992 8h18.016c.548 0 .992.456.992 1.002v9.996c0 .553-.455 1.002-.992 1.002H.992C.444 20 0 19.544 0 18.998V9.002Zm0-8C0 .45.451 0 .99 0h4.02A.99.99 0 0 1 6 1.003v4.994C6 6.551 5.549 7 5.01 7H.99A.99.99 0 0 1 0 5.997V1.003Zm7 0C7 .45 7.451 0 7.99 0h4.02A.99.99 0 0 1 13 1.003v4.994C13 6.551 12.549 7 12.01 7H7.99A.99.99 0 0 1 7 5.997V1.003Zm7 0C14 .45 14.451 0 14.99 0h4.02A.99.99 0 0 1 20 1.003v4.994C20 6.551 19.549 7 19.01 7h-4.02A.99.99 0 0 1 14 5.997V1.003Z"></path></svg></button></div><div class="EditorHeaderViewSwitcher_switch-thcS-"><nav class="EditorHeaderViewSwitcherLinks_linkList-b3AAG"><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link pen-link active" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB" id="pen-link"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista del editor</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">bolígrafo </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/editor-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link details-link" href="https://codepen.io/Cristian-Lujan/details/oNRzBMB" id="details-link"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista de detalles</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">detalles </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/details-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link full-link" href="https://codepen.io/Cristian-Lujan/full/oNRzBMB" id="full-link"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista de página completa</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">lleno </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/full-page-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link debug-link" href="https://codepen.io/pen/debug/oNRzBMB" id="debug-link" target="_blank" rel="noopener"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo de depuración</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">depurar </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/debug-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link live-link" href="https://codepen.io/Cristian-Lujan/live/oNRzBMB" id="live-link" target="_blank" rel="noopener"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista en vivo</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">vivir </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="http://blog.codepen.io/documentation/pro-features/live-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link collab-link" href="https://codepen.io/Cristian-Lujan/collab/oNRzBMB" id="collab-link"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo colaboración</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">colaboración </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/pro-features/collab-mode/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link professor-link" href="https://codepen.io/Cristian-Lujan/professor/oNRzBMB" id="professor-link"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo profesor</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">profesor </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="http://blog.codepen.io/documentation/pro-features/professor-mode/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link pres-link" href="https://codepen.io/Cristian-Lujan/pres/oNRzBMB" id="pres-link"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo presentación</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">pres </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="http://blog.codepen.io/documentation/pro-features/presentation-mode/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a></nav></div></div></div></span><div class="view-switcher EditorHeaderViewSwitcher_mobile-TM24l"><div class="EditorHeaderViewSwitcher_switch-thcS-"><nav class="EditorHeaderViewSwitcherLinks_linkList-b3AAG"><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link pen-link active" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB" id="pen-link"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista del editor</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">bolígrafo </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/editor-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link details-link" href="https://codepen.io/Cristian-Lujan/details/oNRzBMB" id="details-link"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista de detalles</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">detalles </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/details-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link full-link" href="https://codepen.io/Cristian-Lujan/full/oNRzBMB" id="full-link"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista de página completa</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">lleno </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/full-page-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link debug-link" href="https://codepen.io/pen/debug/oNRzBMB" id="debug-link" target="_blank" rel="noopener"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo de depuración</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">depurar </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/views/debug-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link live-link" href="https://codepen.io/Cristian-Lujan/live/oNRzBMB" id="live-link" target="_blank" rel="noopener"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista en vivo</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">vivir </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="http://blog.codepen.io/documentation/pro-features/live-view/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link collab-link" href="https://codepen.io/Cristian-Lujan/collab/oNRzBMB" id="collab-link"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo colaboración</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">colaboración </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="https://blog.codepen.io/documentation/pro-features/collab-mode/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link professor-link" href="https://codepen.io/Cristian-Lujan/professor/oNRzBMB" id="professor-link"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo profesor</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">profesor </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="http://blog.codepen.io/documentation/pro-features/professor-mode/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a><a class="EditorHeaderViewSwitcherLink_link-wYdA5 editor-link pres-link" href="https://codepen.io/Cristian-Lujan/pres/oNRzBMB" id="pres-link"><span class="EditorHeaderViewSwitcherLink_badgePro-kVS91 BadgePro-module_root-EhalN BadgePro-module_svg-OztkH Badge-module_root-+zThw" title="PRO" data-test-id="pro-badge"><svg fill="none" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg" style="width: 32px; height: 16px;"><rect fill="#ffdd40" height="16" rx="1.5" width="32"></rect><g fill="#000"><path d="M9.174 5.598c.834 0 1.214.44 1.214 1.113 0 .76-.422 1.113-1.182 1.113h-.56c-.094 0-.105-.011-.105-.11V5.708c0-.1.01-.11.106-.11zm.106 3.67c.76 0 1.404-.188 1.847-.563.56-.452.855-1.135.855-2.016 0-.893-.317-1.61-.887-2.039-.443-.33-.97-.507-1.857-.507H7.106c-.095 0-.106.011-.106.11v7.494c0 .099.01.11.106.11h1.33c.094 0 .105-.011.105-.11v-2.37c0-.099.01-.11.106-.11zM14.375 9.047c0-.077 0-.11.063-.11.053 0 .074.022.116.088l1.953 2.722c.074.099.084.11.18.11h1.635c.064 0 .095 0 .095-.022a.31.31 0 0 0-.053-.088c-.707-.96-1.425-1.885-2.132-2.854a.085.085 0 0 1-.02-.045c0-.022.01-.044.041-.055.95-.286 1.573-1.124 1.573-2.28 0-.96-.454-1.62-1.055-1.973-.539-.32-1.056-.397-1.943-.397H12.94c-.095 0-.105.011-.105.11v7.494c0 .099.02.11.116.11h1.32c.094 0 .105-.011.105-.11zm.654-3.515c.834 0 1.214.418 1.214 1.09 0 .76-.422 1.07-1.182 1.07h-.58c-.096 0-.106-.012-.106-.11v-1.94c0-.1.01-.11.105-.11zM26 8c0-2.182-1.636-4-3.726-4s-3.726 1.818-3.726 4 1.636 4 3.726 4S26 10.182 26 8zm-5.837 0c0-1.311.855-2.402 2.111-2.402 1.256 0 2.111 1.09 2.111 2.402 0 1.311-.855 2.402-2.11 2.402-1.257 0-2.112-1.09-2.112-2.402z"></path></g></svg></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Modo presentación</font></font><span class="EditorHeaderViewSwitcherLink_linkMeta-rzMQe"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/ </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">pres </font></font><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">/</font></font><span data-href="http://blog.codepen.io/documentation/pro-features/presentation-mode/" class="EditorHeaderViewSwitcherLink_learnMore-iaxpx"><svg viewBox="0 0 100 100" width="13" height="13"><path d="M75 0H25C11.19 0 0 11.193 0 25v50c0 13.802 11.19 25 25 25h50c13.811 0 25-11.198 25-25V25c0-13.807-11.189-25-25-25zM57.203 85.067H41.504V72.542h15.699v12.525zm16.154-43.026c-.84 2.066-1.873 3.834-3.102 5.298a20.59 20.59 0 0 1-4.101 3.751 91.479 91.479 0 0 0-4.249 3.101c-1.333 1.034-1.553 2.214-2.596 3.547-1.025 1.335-.977 3.004-.977 5.006v3.924H41.668v-4.623c0-2.864 1.366-5.265 2.27-7.202.896-1.935 2.255-3.581 3.459-4.947 1.196-1.367 2.62-2.556 3.955-3.557 1.327-.993 2.637-1.993 3.776-2.995 1.123-1.001 2.083-2.1 2.783-3.304.7-1.197 1.043-2.694.977-4.5 0-3.06-.74-5.33-2.245-6.795-1.498-1.465-3.582-2.206-6.25-2.206-1.8 0-3.337.351-4.639 1.05a9.172 9.172 0 0 0-3.199 2.808c-.837 1.163-1.448 3.593-1.847 5.156-.407 1.57-.602 6.115-.602 6.115H25.399c.073-8.333.684-7.963 1.855-10.965 1.164-2.995 2.8-6.132 4.899-8.33 2.099-2.197 4.63-4.179 7.601-5.417a25.782 25.782 0 0 1 9.945-1.977c4.736 0 8.683.581 11.856 1.876 3.167 1.302 5.713 2.889 7.65 4.817 1.929 1.937 3.312 4.004 4.149 6.234.831 2.237 1.245 4.313 1.245 6.242.002 3.206-.412 5.827-1.242 7.893z"></path></svg></span></span></a></nav></div></div></div></div><span class="ButtonGroup-module_root-RfSlH PinButton-module_pinButtonGroup-GmhFS"><button title="Artículo de fijación" class="Button-module_root-xw+9D PinButton-module_pinButton-gXLwe"><svg viewBox="0 0 12 18"><path d="M1.5 7.74V1.8c-.414 0-.75-.403-.75-.9s.336-.9.75-.9h9c.414 0 .75.403.75.9s-.336.9-.75.9v5.94a7.567 7.567 0 0 1 1.274 2.55c.11.395.166.73.195.973a4.701 4.701 0 0 1 .03.387v.031l.001.01v.007s-.004-.117 0 .002c0 .497-.336.9-.75.9h-4.5v4.5c0 .497-.336.9-.75.9s-.75-.403-.75-.9v-4.5H.75c-.414 0-.75-.403-.75-.9v-.019a2.22 2.22 0 0 1 .005-.122c.004-.074.011-.173.026-.296.029-.244.085-.578.195-.973.2-.72.575-1.632 1.274-2.55Z"></path></svg></button><button aria-haspopup="true" aria-expanded="false" aria-label="Ver elementos fijados" class="Button-module_root-xw+9D ButtonWithDropdownTrigger-module_root-QUiLE"><svg viewBox="-122.9 121.1 105.9 61.9" class="ButtonWithDropdownTrigger-module_icon-BjxRt DropdownArrowIcon-module_icon-w0Zif"><path d="m-63.2 180.3 43.5-43.5c1.7-1.7 2.7-4 2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8 1-6.5 2.7L-69.9 161l-37.2-37.2c-1.7-1.7-4-2.7-6.5-2.7s-4.8 1-6.5 2.6c-1.9 1.8-2.8 4.2-2.8 6.6 0 2.3.9 4.6 2.6 6.5 11.4 11.5 41 41.2 43 43.3l.2.2c3.6 3.6 10.3 3.6 13.9 0z"></path></svg></button></span><nav class="DropdownControlled-module_root-3ewM0 UserMenu-module_userMenuDropdownParent-+nd1x" data-direction="bottom left" data-open="false"><button class="UserMenu-module_userMenuButton-b38jZ" data-test-id="user-menu-button" title="Menú del Usuario" aria-haspopup="menu" aria-expanded="false" aria-controls="oc-1716599620559"><div id="sessionUserAvatar" class="UserMenu-module_sessionUserAvatar-d-j2e" data-test-id="user-avatar" style="background-image: url("https://assets.codepen.io/t-1/user-default-avatar.jpg?format=auto&version=0&width=80&height=80");"></div><span class="ScreenReaderText-module_root-jASUi"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Menú del Usuario</font></font></span></button><div class="DropdownControlled-module_content-mxnG0" id="oc-1716599620559" role="menu" data-open="false" hidden="" data-direction="bottom left"><div class="DropdownContent-module_root-rQ0al UserMenu-module_userMenu-l8CQO" data-open="false" data-test-id="user-menu"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">FALSO</font></font></div></div></nav></div></header>
<div class="item-settings-modal tab-layout tab-layout-modal pen" id="item-settings-modal">
<header class="item-settings-modal-header tab-layout-header">
<h2 class="item-settings-modal-header-title tab-layout-header-title"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Configuración del lápiz</font></font></h2>
<div class="save-and-close-wrap">
<button type="button" class="button mini-button button-no-right-margin close" id="top-close-settings">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
</button>
</div>
</header>
<div class="tabs tab-layout-wrapper settings-tabs-wrapper">
<nav id="settings-tabs" class="no-mobile-nav tab-layout-tabs item-settings-tabs notranslate" translate="no">
<div class="tab-layout-tab-group">
<a id="settings-html-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-html" class="settings-tab-html active" data-type="html">
HTML
</a>
<a id="settings-css-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-css" class="settings-tab-css" data-type="css">
CSS
</a>
<a id="settings-js-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-js" class="settings-tab-js" data-type="js">
JS
</a>
</div>
<div class="tab-layout-tab-group">
<a id="settings-details-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-details" class="settings-tab-details" data-type="details">
Pen Details
</a>
<a id="settings-privacy-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-privacy" class="settings-tab-privacy" data-type="privacy">
Privacy
<span style="border-radius: 2px; padding: 1px 6px 2px 5px; color: black !important; background: var(--cp-color-yellow); white-space: nowrap; text-shadow: none; letter-spacing: 0; font-size: 71%; position: relative; top: -1px;">PRO</span>
</a>
<a id="settings-behavior-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-behavior" class="settings-tab-behavior" data-type="behavior">
Behavior
</a>
<a id="settings-editor-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-editor" class="settings-tab-editor" data-type="editor">
Editor
</a>
<a id="settings-template-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-template" class="settings-tab-template" data-type="template">
Template
</a>
<a id="settings-screenshot-tab" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#settings-screenshot" class="settings-tab-screenshot" data-type="screenshot">
Screenshot
<span style="border-radius: 2px; padding: 1px 6px 2px 5px; color: black !important; background: var(--cp-color-yellow); white-space: nowrap; text-shadow: none; letter-spacing: 0; font-size: 71%; position: relative; top: -1px;">PRO</span>
</a>
</div>
</nav>
<div class="settings tab-page active" id="settings-html">
<h3 aria-label="HTML"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">HTML</font></font></h3>
<div class="settings-row top-label-form normal-labels">
<h4>
<label for="html-preprocessor"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Preprocesador HTML
</font></font></label>
</h4>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Acerca de los preprocesadores HTML</font></font></h5>
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Los preprocesadores HTML pueden hacer que escribir HTML sea más potente o conveniente. Por ejemplo, Markdown está diseñado para que sea más fácil de escribir y leer en documentos de texto y puedes escribir un bucle en Pug.</font></font></p>
<p><a href="https://blog.codepen.io/documentation/editor/using-html-preprocessors/" target="_blank" rel="noopener"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Más información</font></font></a><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> · </font></font><a href="https://codepen.io/versions/" target="_blank" rel="noopener"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Versiones</font></font></a></p>
</div>
</div>
<div class="custom-select-wrap">
<select name="html-preprocessor" id="html-preprocessor" class="fullwidth">
<option value="none"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Ninguno</font></font></option>
<option value="haml"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Hamel</font></font></option>
<option value="markdown"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Reducción</font></font></option>
<option value="slim"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Delgado</font></font></option>
<option value="pug"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Doguillo</font></font></option>
</select>
<div class="select-icon">
<svg viewBox="-122.9 121.1 105.9 61.9" class="icon-arrow-down-mini">
<path d="M-63.2,180.3l43.5-43.5c1.7-1.7,2.7-4,2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.7l-37.2,37.2l-37.2-37.2
c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.6c-1.9,1.8-2.8,4.2-2.8,6.6c0,2.3,0.9,4.6,2.6,6.5l0,0c11.4,11.5,41,41.2,43,43.3l0.2,0.2
C-73.5,183.9-66.8,183.9-63.2,180.3z"></path>
</svg>
<svg viewBox="-122.9 121.1 105.9 61.9" class="icon-arrow-down-mini">
<path d="M-63.2,180.3l43.5-43.5c1.7-1.7,2.7-4,2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.7l-37.2,37.2l-37.2-37.2
c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.6c-1.9,1.8-2.8,4.2-2.8,6.6c0,2.3,0.9,4.6,2.6,6.5l0,0c11.4,11.5,41,41.2,43,43.3l0.2,0.2
C-73.5,183.9-66.8,183.9-63.2,180.3z"></path>
</svg>
</div>
</div>
</div>
<div class="settings-row top-label-form normal-labels">
<h4>
<label for="html-classes"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Agregar clases a <html></font></font></label>
</h4>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Agregar clases</font></font></h5>
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">En CodePen, todo lo que escriba en el editor HTML es lo que va dentro de las </font></font><code><body></code><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">etiquetas en </font></font><a target="_blank" rel="noopener" href="https://blog.codepen.io/documentation/features/preview-template/"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">una plantilla HTML5 básica</font></font></a><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> . Por lo tanto, no tiene acceso a elementos superiores como la </font></font><code><html></code><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">etiqueta. Si desea agregar clases que puedan afectar todo el documento, este es el lugar para hacerlo.</font></font></p>
</div>
</div>
<input type="text" id="html-classes" name="html-classes" class="fullwidth" placeholder="por ejemplo, puesto único posterior a 1234" maxlength="250">
</div>
<div class="settings-row top-label-form normal-labels">
<h4>
<label for="head-content"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Cosas para <cabeza></font></font></label>
</h4>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Sobre el <cabeza></font></font></h5>
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">En CodePen, todo lo que escriba en el editor HTML es lo que va dentro de las </font></font><code><body></code><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">etiquetas en </font></font><a target="_blank" rel="noopener" href="https://blog.codepen.io/documentation/features/preview-template/"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">una plantilla HTML5 básica</font></font></a><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> . Si necesita cosas en el </font></font><code><head></code><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">documento, coloque ese código aquí.</font></font></p>
</div>
</div>
<div class="head-content-wrapper">
<textarea id="head-content" name="head-content" class="fullwidth is-code head-content notranslate" translate="no" placeholder="e.g. <meta>, <link>, <script>"></textarea>
<span class="insecure-resource-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">!</font></font></span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Recurso inseguro</font></font></h5>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">El recurso al que está enlazando utiliza el protocolo 'http', que puede no funcionar cuando el navegador utiliza https.</font></font></p>
</div>
</div>
</span>
</div>
<button class="button mini-button button-medium" id="meta-tag-insert"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">↑ Inserte la metaetiqueta de ventana gráfica más común</font></font></button>
</div>
</div>
<div class="settings tab-page" id="settings-css">
<h3 aria-label="CSS"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">CSS</font></font></h3>
<div class="settings-row top-label-form normal-labels">
<h4>
<label for="css-preprocessor"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Preprocesador CSS
</font></font></label>
</h4>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Acerca de los preprocesadores CSS</font></font></h5>
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Los preprocesadores de CSS ayudan a facilitar la creación de CSS. Todos ellos ofrecen cosas como variables y mixins para proporcionar abstracciones convenientes.</font></font></p>
<p><a href="https://blog.codepen.io/documentation/editor/using-css-preprocessors/" target="_blank"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Más información</font></font></a><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> · </font></font><a href="https://codepen.io/versions/" target="_blank"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Versiones</font></font></a></p>
</div>
</div>
<div class="custom-select-wrap">
<select name="css-preprocessor" id="css-preprocessor" class="fullwidth css-preprocessor">
<option value="none"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Ninguno</font></font></option>
<option value="less"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Menos</font></font></option>
<option value="scss"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">SCSS</font></font></option>
<option value="sass"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Hablar con descaro a</font></font></option>
<option value="stylus"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Aguja</font></font></option>
<option value="postcss"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">PublicarCSS</font></font></option>
</select>
<div class="select-icon">
<svg viewBox="-122.9 121.1 105.9 61.9" class="icon-arrow-down-mini">
<path d="M-63.2,180.3l43.5-43.5c1.7-1.7,2.7-4,2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.7l-37.2,37.2l-37.2-37.2
c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.6c-1.9,1.8-2.8,4.2-2.8,6.6c0,2.3,0.9,4.6,2.6,6.5l0,0c11.4,11.5,41,41.2,43,43.3l0.2,0.2
C-73.5,183.9-66.8,183.9-63.2,180.3z"></path>
</svg>
<svg viewBox="-122.9 121.1 105.9 61.9" class="icon-arrow-down-mini">
<path d="M-63.2,180.3l43.5-43.5c1.7-1.7,2.7-4,2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.7l-37.2,37.2l-37.2-37.2
c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.6c-1.9,1.8-2.8,4.2-2.8,6.6c0,2.3,0.9,4.6,2.6,6.5l0,0c11.4,11.5,41,41.2,43,43.3l0.2,0.2
C-73.5,183.9-66.8,183.9-63.2,180.3z"></path>
</svg>
</div>
</div>
<div id="need-an-addon" class="align-right hide">
<a id="css-need-an-addon-button" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB#0" class="button button-medium mini-button need-an-addon-button"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
¿Necesitas un complemento?
</font></font></a>
</div>
<div class="add-ons add-ons-scss hide" id="add-ons"></div>
</div>
<div id="startercss-options-form" class="settings-row top-label-form">
<h4><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Bases CSS
</font></font></h4>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Acerca de la base CSS</font></font></h5>
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Es una práctica común aplicar CSS a una página que diseña elementos de manera que sean consistentes en todos los navegadores. Ofrecemos dos de las opciones más populares: </font></font><a href="http://necolas.github.io/normalize.css/" target="_blank" rel="noopener"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">normalize.css</font></font></a><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> y </font></font><a href="http://meyerweb.com/eric/tools/css/reset/" target="_blank" rel="noopener"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">reset</font></font></a><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> . O elija </font></font><b><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Ninguna</font></font></b><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> y no se aplicará nada.</font></font></p>
</div>
</div>
<ul class="radio-list">
<li>
<input type="radio" id="startercss-normalize" name="startercss" checked="" value="normalize">
<label for="startercss-normalize" class="small-inline"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Normalizar</font></font></label>
</li>
<li>
<input type="radio" id="startercss-reset" name="startercss" checked="" value="reset">
<label for="startercss-reset" class="small-inline"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Reiniciar</font></font></label>
</li>
<li>
<input type="radio" id="startercss-neither" name="startercss" checked="" value="neither">
<label for="startercss-neither" class="small-inline"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Ni</font></font></label>
</li>
</ul>
</div>
<div id="prefix-options-form" class="settings-row top-label-form">
<h4><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Prefijo de proveedor
</font></font></h4>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Acerca del prefijo de proveedores</font></font></h5>
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Para obtener la mejor compatibilidad con varios navegadores, es una práctica común aplicar prefijos de proveedores a las propiedades y valores de CSS que requieren que funcionen. Por ejemplo </font></font><code>-webkit-</code><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">o </font></font><code>-moz-</code><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">.</font></font></p>
<p>We offer two popular choices: <a href="https://github.com/postcss/autoprefixer" target="blank" rel="noopener">Autoprefixer</a> (which processes your CSS server-side) and <a href="http://leaverou.github.io/prefixfree/" target="_blank" rel="noopener">-prefix-free</a> (which applies prefixes via a script, client-side).</p>
</div>
</div>
<ul class="radio-list">
<li>
<input type="radio" id="prefix-autoprefixer" name="prefix" value="autoprefixer">
<label for="prefix-autoprefixer" class="small-inline">Autoprefixer</label>
</li>
<li>
<input type="radio" id="prefix-prefixfree" name="prefix" value="prefixfree">
<label for="prefix-prefixfree" class="small-inline">Prefixfree</label>
</li>
<li>
<input type="radio" id="prefix-neither" name="prefix" value="neither">
<label for="prefix-neither" class="small-inline">Neither</label>
</li>
</ul>
</div>
<div id="external-css-resources" class="settings-row">
<h4>
Add External Stylesheets/Pens
</h4>
<p>Any URLs added here will be added as <code><link></code>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper <a href="https://blog.codepen.io/documentation/url-extensions/">URL extension</a>.</p>
<div class="resource-search-bar">
<svg class="icon icon-mag" viewBox="0 0 56.7 56.7">
<path d="M42.8,7.3C33-2.4,17.1-2.4,7.3,7.3c-9.8,9.8-9.8,25.7,0,35.5c8.7,8.7,22.2,9.7,32,2.9l9.6,9.6c1.8,1.8,4.7,1.8,6.4,0
c1.8-1.8,1.8-4.7,0-6.4l-9.6-9.6C52.5,29.5,51.5,16,42.8,7.3z M36.6,36.6c-6.4,6.4-16.7,6.4-23.1,0s-6.4-16.7,0-23.1
c6.4-6.4,16.7-6.4,23.1,0C43,19.9,43,30.3,36.6,36.6z"></path>
</svg>
<span class="algolia-autocomplete" style="position: relative; display: inline-block; direction: ltr;"><input id="external-css-search" type="text" value="" placeholder="Search for resources (Bootstrap, Foundation, Animate.css...)" class="aa-input" autocomplete="off" spellcheck="false" role="combobox" aria-autocomplete="both" aria-expanded="false" aria-owns="algolia-autocomplete-listbox-0" dir="auto" style="position: relative; vertical-align: top;"><pre aria-hidden="true" style="position: absolute; visibility: hidden; white-space: pre; font-family: Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; word-spacing: 0px; letter-spacing: 0px; text-indent: 0px; text-rendering: auto; text-transform: none;"></pre><span class="aa-dropdown-menu" role="listbox" id="algolia-autocomplete-listbox-0" style="position: absolute; top: 100%; left: 0px; z-index: 100; display: none; right: auto;"><div class="aa-dataset-1"></div><div class="aa-dataset-2"></div></span></span>
</div>
<div class="algolia-shoutout">
<a href="https://www.algolia.com/?utm_source=react-instantsearch&utm_medium=website&utm_content=codepen.io&utm_campaign=poweredby" target="_blank">
Powered by <img alt="Algolia" src="./EJERCICIO5_files/algolia-9e1c0c887f4db420704b2a79926864019ef156bcecc9d5774a7e4eaa731fc5b5.svg">
</a>
</div>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5>About External Resources</h5>
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p>You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.</p>
<p>You can also link to another Pen here (use the <code>.css</code> <a href="https://blog.codepen.io/documentation/url-extensions/">URL Extension</a>) and we'll pull the CSS from that Pen and include it. If it's using a <em>matching</em> preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.</p>
<p><a href="https://blog.codepen.io/documentation/editor/adding-external-resources/" target="_blank" rel="noopener">Learn more</a></p>
</div>
</div>
<div id="css-external-resources" class="external-resource-wrapper ui-sortable">
<div data-view-id="21296759" class="external-resource-url-row">
<span class="move-external-url">
<svg viewBox="0 0 17 20" class="icon-drag-handle" width="20" height="17">
<path d="m1.5 3a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3z"></path>
</svg>
</span>
<input id="external-resource-input-21296759" class="fullwidth css-resource external-resource" type="text" pattern="^((ftp|http|https):)?\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$" name="external-css" placeholder="https://yourwebsite.com/style.css" value="" data-view-id="21296759">
<span class="insecure-resource-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>Insecure Resource</h5>
<p>You are linking to a resource using the non-secure http:// protocol, which may not work when the browser is using https:// like CodePen enforces.</p>
</div>
</div>
</span>
<span class="not-using-url-extension-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>URL Extension Required</h5>
<p>When linking another Pen as a resource, make sure you use a <a href="https://blog.codepen.io/documentation/url-extensions/">URL Extension</a> of the type of code you want to link to. Either <code>.css</code>, <code>.js</code>, or the extension of a matching code processor.</p>
</div>
</div>
</span>
<div class="resource-actions">
<span class="remove-external-url external-url-option" data-view-id="21296759">
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
</span>
<a id="external-resource-input-view-link-21296759" class="open-external-url external-url-option" target="_blank" rel="noopener" data-view-id="21296759" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB">
<svg viewBox="0 0 30.5 16.5" id="icon-eye" width="14" height="14">
<path d="M15.3,0C8.9,0,3.3,3.3,0,8.3c3.3,5,8.9,8.3,15.3,8.3c6.4,0,12-3.3,15.3-8.3C27.3,3.3,21.7,0,15.3,0z M15.3,14.5 c-3.4,0-6.2-2.8-6.2-6.2C9,4.8,11.8,2,15.3,2c3.4,0,6.2,2.8,6.2,6.2C21.5,11.7,18.7,14.5,15.3,14.5z"></path>
</svg>
</a>
</div>
</div><div data-view-id="99121166" class="external-resource-url-row">
<span class="move-external-url">
<svg viewBox="0 0 17 20" class="icon-drag-handle" width="20" height="17">
<path d="m1.5 3a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3z"></path>
</svg>
</span>
<input id="external-resource-input-99121166" class="fullwidth css-resource external-resource" type="text" pattern="^((ftp|http|https):)?\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$" name="external-css" placeholder="https://codepen.io/username/pen/aBcDef.css" value="" data-view-id="99121166">
<span class="insecure-resource-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>Insecure Resource</h5>
<p>You are linking to a resource using the non-secure http:// protocol, which may not work when the browser is using https:// like CodePen enforces.</p>
</div>
</div>
</span>
<span class="not-using-url-extension-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>URL Extension Required</h5>
<p>When linking another Pen as a resource, make sure you use a <a href="https://blog.codepen.io/documentation/url-extensions/">URL Extension</a> of the type of code you want to link to. Either <code>.css</code>, <code>.js</code>, or the extension of a matching code processor.</p>
</div>
</div>
</span>
<div class="resource-actions">
<span class="remove-external-url external-url-option" data-view-id="99121166">
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
</span>
<a id="external-resource-input-view-link-99121166" class="open-external-url external-url-option" target="_blank" rel="noopener" data-view-id="99121166" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB">
<svg viewBox="0 0 30.5 16.5" id="icon-eye" width="14" height="14">
<path d="M15.3,0C8.9,0,3.3,3.3,0,8.3c3.3,5,8.9,8.3,15.3,8.3c6.4,0,12-3.3,15.3-8.3C27.3,3.3,21.7,0,15.3,0z M15.3,14.5 c-3.4,0-6.2-2.8-6.2-6.2C9,4.8,11.8,2,15.3,2c3.4,0,6.2,2.8,6.2,6.2C21.5,11.7,18.7,14.5,15.3,14.5z"></path>
</svg>
</a>
</div>
</div></div>
<script id="css-external-resources-template" nonce="" type="text/template">
<div data-view-id="<%= view_id %>" class="external-resource-url-row <%= insecure_resource %>">
<span class="move-external-url">
<svg viewBox="0 0 17 20" class="icon-drag-handle" width="20" height="17">
<path d="m1.5 3a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3z"/>
</svg>
</span>
<input
id="external-resource-input-<%= view_id %>"
class="fullwidth css-resource external-resource"
type="text"
pattern="^((ftp|http|https):)?\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$"
name="external-css"
placeholder="<%= placeholder %>"
value="<%= url %>"
data-view-id="<%= view_id %>">
<span class="insecure-resource-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"/>
</svg>
<h5>Insecure Resource</h5>
<p>You are linking to a resource using the non-secure http:// protocol, which may not work when the browser is using https:// like CodePen enforces.</p>
</div>
</div>
</span>
<span class="not-using-url-extension-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"/>
</svg>
<h5>URL Extension Required</h5>
<p>When linking another Pen as a resource, make sure you use a <a href="https://blog.codepen.io/documentation/url-extensions/">URL Extension</a> of the type of code you want to link to. Either <code>.css</code>, <code>.js</code>, or the extension of a matching code processor.</p>
</div>
</div>
</span>
<div class="resource-actions">
<span class="remove-external-url external-url-option" data-view-id="<%= view_id %>">
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"/>
</svg>
</span>
<a id="external-resource-input-view-link-<%= view_id %>" class="open-external-url external-url-option" target="_blank" rel="noopener" data-view-id="<%= view_id %>" href="<%= url %>">
<svg viewBox="0 0 30.5 16.5" id="icon-eye" width="14" height="14">
<path d="M15.3,0C8.9,0,3.3,3.3,0,8.3c3.3,5,8.9,8.3,15.3,8.3c6.4,0,12-3.3,15.3-8.3C27.3,3.3,21.7,0,15.3,0z M15.3,14.5 c-3.4,0-6.2-2.8-6.2-6.2C9,4.8,11.8,2,15.3,2c3.4,0,6.2,2.8,6.2,6.2C21.5,11.7,18.7,14.5,15.3,14.5z"/>
</svg>
</a>
</div>
</div>
</script>
<div class="external-resource-actions group">
<span id="add-css-resource" class="button mini-button button-medium add-resource" data-type="css">
<span data-type="css">+ add another resource</span>
</span>
</div>
</div>
</div>
<div class="settings tab-page" id="settings-js">
<div class="item-settings-javascript normal-labels">
<h3>
JavaScript
</h3>
<div class="item-settings-javascript-preprocessor settings-row">
<h4>
<label for="js-preprocessor">
JavaScript Preprocessor
</label>
</h4>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100" width="14" height="14">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5>About JavaScript Preprocessors</h5>
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p>JavaScript preprocessors can help make authoring JavaScript easier and more convenient.</p>
<p><a href="https://blog.codepen.io/documentation/editor/using-js-preprocessors/" target="_blank" rel="noopener">Learn more</a> · <a href="https://codepen.io/versions/" target="_blank">Versions</a></p>
</div>
</div>
<div class="custom-select-wrap">
<select name="js-preprocessor" id="js-preprocessor" class="fullwidth">
<option value="none">None</option>
<option value="babel">Babel</option>
<option value="typescript">TypeScript</option>
<option value="coffeescript">CoffeeScript</option>
<option value="livescript">LiveScript</option>
</select>
<div class="select-icon">
<svg viewBox="-122.9 121.1 105.9 61.9" class="icon-arrow-down-mini">
<path d="M-63.2,180.3l43.5-43.5c1.7-1.7,2.7-4,2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.7l-37.2,37.2l-37.2-37.2
c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.6c-1.9,1.8-2.8,4.2-2.8,6.6c0,2.3,0.9,4.6,2.6,6.5l0,0c11.4,11.5,41,41.2,43,43.3l0.2,0.2
C-73.5,183.9-66.8,183.9-63.2,180.3z"></path>
</svg>
<svg viewBox="-122.9 121.1 105.9 61.9" class="icon-arrow-down-mini">
<path d="M-63.2,180.3l43.5-43.5c1.7-1.7,2.7-4,2.7-6.5s-1-4.8-2.7-6.5c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.7l-37.2,37.2l-37.2-37.2
c-1.7-1.7-4-2.7-6.5-2.7s-4.8,1-6.5,2.6c-1.9,1.8-2.8,4.2-2.8,6.6c0,2.3,0.9,4.6,2.6,6.5l0,0c11.4,11.5,41,41.2,43,43.3l0.2,0.2
C-73.5,183.9-66.8,183.9-63.2,180.3z"></path>
</svg>
</div>
</div>
<p><small>Babel includes JSX processing.</small></p>
</div>
<div id="external-js-resources" class="item-settings-javascript-external settings-row external-js-resources top-label-form">
<h4>
Add External Scripts/Pens
</h4>
<p>Any URL's added here will be added as <code><script></code>s in order, and run <em>before</em> the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.</p>
<div class="resource-search-bar">
<svg viewBox="0 0 56.7 56.7" class="icon icon-mag" width="18" height="18">
<path d="M42.8,7.3C33-2.4,17.1-2.4,7.3,7.3c-9.8,9.8-9.8,25.7,0,35.5c8.7,8.7,22.2,9.7,32,2.9l9.6,9.6c1.8,1.8,4.7,1.8,6.4,0
c1.8-1.8,1.8-4.7,0-6.4l-9.6-9.6C52.5,29.5,51.5,16,42.8,7.3z M36.6,36.6c-6.4,6.4-16.7,6.4-23.1,0s-6.4-16.7,0-23.1
c6.4-6.4,16.7-6.4,23.1,0C43,19.9,43,30.3,36.6,36.6z"></path>
</svg>
<span class="algolia-autocomplete" style="position: relative; display: inline-block; direction: ltr;"><input id="external-js-search" type="text" value="" placeholder="Buscar CDNjs (jQuery, Lodash, React, Angular, Vue.js, Ember...)" class="aa-input" autocomplete="off" spellcheck="false" role="combobox" aria-autocomplete="both" aria-expanded="false" aria-owns="algolia-autocomplete-listbox-3" dir="auto" style="position: relative; vertical-align: top;"><pre aria-hidden="true" style="position: absolute; visibility: hidden; white-space: pre; font-family: Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; word-spacing: 0px; letter-spacing: 0px; text-indent: 0px; text-rendering: auto; text-transform: none;"></pre><span class="aa-dropdown-menu" role="listbox" id="algolia-autocomplete-listbox-3" style="position: absolute; top: 100%; left: 0px; z-index: 100; display: none; right: auto;"><div class="aa-dataset-4"></div><div class="aa-dataset-5"></div></span></span>
</div>
<div class="algolia-shoutout">
<a href="https://www.algolia.com/?utm_source=react-instantsearch&utm_medium=website&utm_content=codepen.io&utm_campaign=poweredby" target="_blank">
Powered by <img alt="Algolia" src="./EJERCICIO5_files/algolia-9e1c0c887f4db420704b2a79926864019ef156bcecc9d5774a7e4eaa731fc5b5.svg">
</a>
</div>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100" width="14" height="14">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5>About External Resources</h5>
<svg class="icon-x" viewBox="0 0 100 100" height="12" width="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p>You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.</p>
<p>If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.</p>
<p>You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.</p>
<p><a href="https://blog.codepen.io/documentation/adding-external-resources/" rel="noopener" target="_blank">Learn more</a></p>
</div>
</div>
<div id="js-external-resources" class="external-resource-wrapper ui-sortable">
<div data-view-id="01169669" class="external-resource-url-row">
<span class="move-external-url">
<svg viewBox="0 0 17 20" class="icon-drag-handle" width="20" height="17">
<path d="m1.5 3a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3z"></path>
</svg>
</span>
<input id="external-resource-input-01169669" class="fullwidth js-resource external-resource" type="text" pattern="^((ftp|http|https):)?\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$" name="external-js" placeholder="https://tusitioweb.com/script.js" value="" data-view-id="01169669">
<span class="insecure-resource-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>Insecure Resource</h5>
<p>You are linking to a resource using the non-secure http:// protocol, which may not work when the browser is using https:// like CodePen enforces.</p>
</div>
</div>
</span>
<span class="not-using-url-extension-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>URL Extension Required</h5>
<p>When linking another Pen as a resource, make sure you use a <a href="https://blog.codepen.io/documentation/url-extensions/">URL Extension</a> of the type of code you want to link to. Either <code>.css</code>, <code>.js</code>, or the extension of a matching code processor.</p>
</div>
</div>
</span>
<div class="resource-actions">
<span class="remove-external-url external-url-option" data-view-id="01169669">
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
</span>
<a id="external-resource-input-view-link-01169669" class="open-external-url external-url-option" target="_blank" rel="noopener" data-view-id="01169669" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB">
<svg viewBox="0 0 30.5 16.5" id="icon-eye" width="14" height="14">
<path d="M15.3,0C8.9,0,3.3,3.3,0,8.3c3.3,5,8.9,8.3,15.3,8.3c6.4,0,12-3.3,15.3-8.3C27.3,3.3,21.7,0,15.3,0z M15.3,14.5 c-3.4,0-6.2-2.8-6.2-6.2C9,4.8,11.8,2,15.3,2c3.4,0,6.2,2.8,6.2,6.2C21.5,11.7,18.7,14.5,15.3,14.5z"></path>
</svg>
</a>
</div>
</div><div data-view-id="66016926" class="external-resource-url-row">
<span class="move-external-url">
<svg viewBox="0 0 17 20" class="icon-drag-handle" width="20" height="17">
<path d="m1.5 3a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3z"></path>
</svg>
</span>
<input id="external-resource-input-66016926" class="fullwidth js-resource external-resource" type="text" pattern="^((ftp|http|https):)?\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$" name="external-js" placeholder="https://codepen.io/nombredeusuario/pen/aBcDef.css" value="" data-view-id="66016926">
<span class="insecure-resource-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>Insecure Resource</h5>
<p>You are linking to a resource using the non-secure http:// protocol, which may not work when the browser is using https:// like CodePen enforces.</p>
</div>
</div>
</span>
<span class="not-using-url-extension-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<h5>URL Extension Required</h5>
<p>When linking another Pen as a resource, make sure you use a <a href="https://blog.codepen.io/documentation/url-extensions/">URL Extension</a> of the type of code you want to link to. Either <code>.css</code>, <code>.js</code>, or the extension of a matching code processor.</p>
</div>
</div>
</span>
<div class="resource-actions">
<span class="remove-external-url external-url-option" data-view-id="66016926">
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
</span>
<a id="external-resource-input-view-link-66016926" class="open-external-url external-url-option" target="_blank" rel="noopener" data-view-id="66016926" href="https://codepen.io/Cristian-Lujan/pen/oNRzBMB">
<svg viewBox="0 0 30.5 16.5" id="icon-eye" width="14" height="14">
<path d="M15.3,0C8.9,0,3.3,3.3,0,8.3c3.3,5,8.9,8.3,15.3,8.3c6.4,0,12-3.3,15.3-8.3C27.3,3.3,21.7,0,15.3,0z M15.3,14.5 c-3.4,0-6.2-2.8-6.2-6.2C9,4.8,11.8,2,15.3,2c3.4,0,6.2,2.8,6.2,6.2C21.5,11.7,18.7,14.5,15.3,14.5z"></path>
</svg>
</a>
</div>
</div></div>
<script id="js-external-resources-template" nonce="" type="text/template">
<div data-view-id="<%= view_id %>" class="external-resource-url-row <%= insecure_resource %>">
<span class="move-external-url">
<svg viewBox="0 0 17 20" class="icon-drag-handle" width="20" height="17">
<path d="m1.5 3a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3zm0 7a1.5 1.5 0 0 1 0-3h17a1.5 1.5 0 0 1 0 3z"/>
</svg>
</span>
<input
id="external-resource-input-<%= view_id %>"
class="fullwidth js-resource external-resource"
type="text"
pattern="^((ftp|http|https):)?\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$"
name="external-js"
placeholder="<%= placeholder %>"
value="<%= url %>"
data-view-id="<%= view_id %>">
<span class="insecure-resource-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"/>
</svg>
<h5>Insecure Resource</h5>
<p>You are linking to a resource using the non-secure http:// protocol, which may not work when the browser is using https:// like CodePen enforces.</p>
</div>
</div>
</span>
<span class="not-using-url-extension-tooltip resource-problem-tooltip">
<div class="help-flyout-link">
<span class="icon-help">?</span>
<div class="help-flyout help-flyout-reverse">
<svg class="icon-x" viewBox="0 0 100 100">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"/>
</svg>
<h5>URL Extension Required</h5>
<p>When linking another Pen as a resource, make sure you use a <a href="https://blog.codepen.io/documentation/url-extensions/">URL Extension</a> of the type of code you want to link to. Either <code>.css</code>, <code>.js</code>, or the extension of a matching code processor.</p>
</div>
</div>
</span>
<div class="resource-actions">
<span class="remove-external-url external-url-option" data-view-id="<%= view_id %>">
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"/>
</svg>
</span>
<a id="external-resource-input-view-link-<%= view_id %>" class="open-external-url external-url-option" target="_blank" rel="noopener" data-view-id="<%= view_id %>" href="<%= url %>">
<svg viewBox="0 0 30.5 16.5" id="icon-eye" width="14" height="14">
<path d="M15.3,0C8.9,0,3.3,3.3,0,8.3c3.3,5,8.9,8.3,15.3,8.3c6.4,0,12-3.3,15.3-8.3C27.3,3.3,21.7,0,15.3,0z M15.3,14.5 c-3.4,0-6.2-2.8-6.2-6.2C9,4.8,11.8,2,15.3,2c3.4,0,6.2,2.8,6.2,6.2C21.5,11.7,18.7,14.5,15.3,14.5z"/>
</svg>
</a>
</div>
</div>
</script>
<div class="external-resource-actions group">
<span id="add-js-resource" class="button button-medium mini-button add-resource" data-type="js">
<span data-type="js">+ add another resource</span>
</span>
</div>
</div>
<h3 aria-label="Paquetes">Packages</h3>
<div class="item-settings-packages settings-row" id="item-settings-packages">
<h4>Add Packages</h4>
<p>Search for and use JavaScript packages from <a href="https://www.npmjs.com/" target="blank" rel="noopener">npm</a> here. By selecting a package, an <code>import</code> statement will be added to the top of the JavaScript editor for this package.</p>
<div class="resource-search-bar">
<svg viewBox="0 0 56.7 56.7" class="icon icon-mag" width="18" height="18">
<path d="M42.8,7.3C33-2.4,17.1-2.4,7.3,7.3c-9.8,9.8-9.8,25.7,0,35.5c8.7,8.7,22.2,9.7,32,2.9l9.6,9.6c1.8,1.8,4.7,1.8,6.4,0
c1.8-1.8,1.8-4.7,0-6.4l-9.6-9.6C52.5,29.5,51.5,16,42.8,7.3z M36.6,36.6c-6.4,6.4-16.7,6.4-23.1,0s-6.4-16.7,0-23.1
c6.4-6.4,16.7-6.4,23.1,0C43,19.9,43,30.3,36.6,36.6z"></path>
</svg>
<span class="algolia-autocomplete" style="position: relative; display: inline-block; direction: ltr;"><input id="packages-search" type="text" value="" placeholder="Busque npm y agregue un paquete..." class="aa-input" autocomplete="off" spellcheck="false" role="combobox" aria-autocomplete="both" aria-expanded="false" aria-owns="algolia-autocomplete-listbox-6" dir="auto" style="position: relative; vertical-align: top;"><pre aria-hidden="true" style="position: absolute; visibility: hidden; white-space: pre; font-family: Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; word-spacing: 0px; letter-spacing: 0px; text-indent: 0px; text-rendering: auto; text-transform: none;"></pre><span class="aa-dropdown-menu" role="listbox" id="algolia-autocomplete-listbox-6" style="position: absolute; top: 100%; left: 0px; z-index: 100; display: none; right: auto;"><div class="aa-dataset-7"></div></span></span>
</div>
<div class="algolia-shoutout">
<a href="https://www.algolia.com/?utm_source=react-instantsearch&utm_medium=website&utm_content=codepen.io&utm_campaign=poweredby" target="_blank">
Powered by <img alt="Algolia" src="./EJERCICIO5_files/algolia-9e1c0c887f4db420704b2a79926864019ef156bcecc9d5774a7e4eaa731fc5b5.svg">
</a>
</div>
<div class="help-flyout-link">
<svg class="icon-help" viewBox="0 0 100 100" width="14" height="14">
<path d="M75,0H25C11.19,0,0,11.193,0,25v50c0,13.802,11.19,25,25,25h50c13.811,0,25-11.198,25-25V25C100,11.193,88.811,0,75,0z
M57.203,85.067H41.504V72.542h15.699V85.067L57.203,85.067z M73.357,42.041c-0.84,2.066-1.873,3.834-3.102,5.298
c-1.235,1.474-2.604,2.718-4.101,3.751c-1.498,1.035-2.922,2.066-4.249,3.101c-1.333,1.034-1.553,2.214-2.596,3.547
c-1.025,1.335-0.977,3.004-0.977,5.006v3.924H41.668v-4.623c0-2.864,1.366-5.265,2.27-7.202c0.896-1.935,2.255-3.581,3.459-4.947
c1.196-1.367,2.62-2.556,3.955-3.557c1.327-0.993,2.637-1.993,3.776-2.995c1.123-1.001,2.083-2.1,2.783-3.304
c0.7-1.197,1.043-2.694,0.977-4.5c0-3.06-0.74-5.33-2.245-6.795c-1.498-1.465-3.582-2.206-6.25-2.206c-1.8,0-3.337,0.351-4.639,1.05
c-1.303,0.7-2.369,1.635-3.199,2.808c-0.837,1.163-1.448,3.593-1.847,5.156c-0.407,1.57-0.602,6.115-0.602,6.115H25.399
c0.073-8.333,0.684-7.963,1.855-10.965c1.164-2.995,2.8-6.132,4.899-8.33c2.099-2.197,4.63-4.179,7.601-5.417
c2.962-1.228,6.283-1.977,9.945-1.977c4.736,0,8.683,0.581,11.856,1.876c3.167,1.302,5.713,2.889,7.65,4.817
c1.929,1.937,3.312,4.004,4.149,6.234c0.831,2.237,1.245,4.313,1.245,6.242C74.601,37.354,74.187,39.975,73.357,42.041z"></path>
</svg>
<div class="help-flyout help-flyout-reverse">
<h5>About Packages</h5>
<svg class="icon-x" viewBox="0 0 100 100" width="12" height="12">
<path d="M96.8 83.7L63.1 50l33.7-33.7c3.6-3.6 3.6-9.4 0-13.1s-9.5-3.6-13.1 0L50 36.9 16.3 3.2C12.7-.4 6.9-.4 3.2 3.2s-3.6 9.5 0 13.1L36.9 50 3.2 83.7c-3.6 3.6-3.6 9.4 0 13.1s9.5 3.6 13.1 0L50 63.1l33.7 33.7c3.6 3.6 9.4 3.6 13.1 0s3.6-9.5 0-13.1z"></path>
</svg>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">El uso de paquetes aquí está impulsado por </font></font><a href="https://esm.sh/"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">esm.sh</font></font></a><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> , que hace que los paquetes de npm no solo estén disponibles en una CDN, sino que los prepara para el uso nativo de JavaScript ESM.</font></font></p>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Todos los paquetes son diferentes, así que consulte sus documentos para saber cómo funcionan.</font></font></p>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Si está utilizando React/ReactDOM, asegúrese de activar Babel para el procesamiento JSX.</font></font></p>
</div>
</div>
</div>
</div>
</div>
<div class="settings tab-page" id="settings-details">
<div id="pen-details" class="pen-details">
<div id="pen-details-form" class="pen-details-form">
<h3 aria-label="Detalles del bolígrafo"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Detalles
</font></font></h3>
<div class="settings-row top-label-form normal-labels">
<h4>
<label for="item-details-title"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Título del bolígrafo
</font></font></label>
</h4>
<input type="text" id="item-details-title" class="item-details-title" name="item-details-title" value="EJERCICIO5" maxlength="255" placeholder="Intitulado">
</div>
<div class="settings-row top-label-form normal-labels">
<h4>
<label for="item-details-description"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Descripción de la pluma
</font></font></label>
</h4>
<textarea class="item-details-description" id="item-details-description" placeholder="Explica aquí lo que está pasando en tu pluma. Este texto se puede buscar, por lo que también puede ayudar a otros a encontrar su trabajo. Recuerde dar crédito a otros cuando se lo merece. Rebajas compatibles."></textarea>
</div>
<div class="tags settings-row top-label-form normal-labels">
<h4>
<label for="pen-tags" class="tags-label"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Etiquetas</font></font><em><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">separados por comas, </font></font><span id="max-tags-label"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">máximo de cinco</font></font></span></em>
</label>
</h4>
<input type="text" id="pen-tags" class="pen-tags">
<div class="active-tags" id="active-tags"></div>
</div>
</div>
</div>
</div>
<div class="settings tab-page" id="settings-privacy">
<div id="pen-privacy" class="pen-details">
<div id="pen-privacy-form" class="pen-details-form top-label-form ">
<h3><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Privacidad
</font></font></h3>
<div class="settings-row public-private-checkbox-row">
<div class="public-private-wrap">
<div class="pro-upsell">
<div class="illustration-pro">
<input type="checkbox" name="illustration-pro" id="illustration-pro">
<img alt="Hazte PRO" class="blind-top" src="./EJERCICIO5_files/blind-top-f2681f21fdd4abda7aac4277b7be978237e2c48832b45e6a8959dd9dcb0f8e64.svg">
<img alt="Se bajaron las persianas de las ventanas para proteger el código." class="blinds" src="./EJERCICIO5_files/blinds-e1e47297e1c0a3b8d2568baaa288d5f264e0c6495561c906a97dbfd553a8f66d.svg">
<img alt="Editor de código con persianas (levantadas) y una bombilla encendida." class="code" src="./EJERCICIO5_files/privacy-048c44f7b51ade74eef277e8027a41fe1a8651c393278b25a807ad7ea79f8418.svg">
<div class="illustration-bg"></div>
</div>
<h4><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Mantenlo en secreto; Manténlo seguro.</font></font></h4>
<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Los bolígrafos privados están ocultos en todas partes de CodePen, excepto para usted. Aún puedes compartirlos y otras personas pueden verlos, pero no pueden encontrarlos mediante la búsqueda o la navegación.</font></font></p>
<a href="https://codepen.io/features/pro" class="button yellow"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Actualízate a PRO</font></font></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="settings tab-page" id="settings-behavior">
<h3 aria-label="Comportamiento de la pluma"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Comportamiento</font></font></h3>
<div class="settings-row">
<h4><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Guardar automáticamente</font></font></h4>
<div>
<p class="hint"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Si está activo, los bolígrafos se guardarán automáticamente cada 30 segundos después de guardarlos una vez.</font></font></p>
<div class="ios-toggle-mega-label-wrap">
<span class="ios-toggle ios-toggle-reverse">
<input type="checkbox" id="auto-save" name="auto-save" checked="">
<label for="auto-save"></label>
<label for="auto-save" class="ios-toggle-mega-label"></label>
</span>
</div>
</div>
</div>
<div class="settings-row">
<h4><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Vista previa de actualización automática</font></font></h4>
<p class="hint"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Si está habilitado, el panel de vista previa se actualiza automáticamente a medida que codifica. Si está deshabilitado, use el botón "Ejecutar" para actualizar.</font></font></p>
<div class="ios-toggle-mega-label-wrap">
<span class="ios-toggle ios-toggle-reverse">
<input type="checkbox" id="auto-run" name="auto-run" checked="">
<label for="auto-run"></label>
<label for="auto-run" class="ios-toggle-mega-label"></label>
</span>
</div>
</div>
<div class="settings-row">
<h4><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Formatear al guardar</font></font></h4>
<p class="hint"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Si está habilitado, su código se formateará cuando guarde activamente su Pen. </font></font><strong><span class="inline-note"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Nota:</font></font></span><font style="vertical-align: inherit;"><font style="vertical-align: inherit;"> su código se despliega durante el formateo.</font></font></strong></p>
<div class="ios-toggle-mega-label-wrap">
<span class="ios-toggle ios-toggle-reverse">
<input type="checkbox" id="format_on_save" name="format_on_save">
<label for="format_on_save"></label>
<label for="format_on_save" class="ios-toggle-mega-label"></label>
</span>
</div>
</div>
</div>
<div class="settings tab-page" id="settings-editor">
<h3 aria-label="Configuración del editor"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Configuración del editor</font></font></h3>
<div id="editor-settings-form" class="settings-row top-label-form">
<h4><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">
Sangría de código
</font></font></h4>
<ul class="radio-list">
<li>
<input type="radio" id="indent-with-spaces" name="indent-with" value="spaces" checked="">
<label for="indent-with-spaces" class="small-inline"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Espacios</font></font></label>
</li>
<li>
<input type="radio" id="indent-with-tabs" name="indent-with" value="tabs">
<label for="indent-with-tabs" class="small-inline"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Pestañas</font></font></label>
</li>
</ul>
</div>
<div class="settings-row top-label-form normal-labels">
<h4>