-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1348 lines (1346 loc) · 62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>New York Time Article</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header class="header">
<nav class="nav width-100 flex-space-btwn">
<div class="nav__left">
<i class="fas fa-bars"></i>
<button type="button" class="search-btn">
<i class="fas fa-search"></i>
</button>
<a href="#" class="nav__left-title">SPACE & COSMOS</a>
</div>
<div class="nav__center">
<a
class="logotype"
rel="noopener noreferrer"
target="_blank"
href="https://www.nytimes.com/"
>
<svg viewBox="0 0 184 25" fill="#000">
<path
d="M13.8 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8C6.2 1.4 5 1 4 1 2 1 .6 2.5.6 4.2c0 1.5 1.1 2 1.5 2.2l.1-.2c-.2-.2-.5-.4-.5-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8v3.1L9 10.2v.1l1.5 1.3v4.3c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2C3.6 6.9 4.7 6 5.8 5.4l-.1-.3c-3 .8-5.7 3.6-5.7 7 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1l-1.6-1.3V5.8c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7 0-1.5.2-2.1l2.1-.9v6.2zm10.6 2.3l-1.3 1 .2.2.6-.5 2.2 2 3-2-.1-.2-.8.5-1-1V9.4l.8-.6 1.7 1.4v6.1c0 3.8-.8 4.4-2.5 5v.3c2.8.1 5.4-.8 5.4-5.7V9.3l.9-.7-.2-.2-.8.6-2.5-2.1L18.5 9V.8h-.2l-3.5 2.4v.2c.4.2 1 .4 1 1.5l-.1 11.3zM34 15.1L31.5 17 29 15v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM53.1 2c0-.3-.1-.6-.2-.9h-.2c-.3.8-.7 1.2-1.7 1.2-.9 0-1.5-.5-1.9-.9l-2.9 3.3.2.2 1-.9c.6.5 1.1.9 2.5 1v8.3L44 3.2c-.5-.8-1.2-1.9-2.6-1.9-1.6 0-3 1.4-2.8 3.6h.3c.1-.6.4-1.3 1.1-1.3.5 0 1 .5 1.3 1v3.3c-1.8 0-3 .8-3 2.3 0 .8.4 2 1.6 2.3v-.2c-.2-.2-.3-.4-.3-.7 0-.5.4-.9 1.1-.9h.5v4.2c-2.1 0-3.8 1.2-3.8 3.2 0 1.9 1.6 2.8 3.4 2.7v-.2c-1.1-.1-1.6-.6-1.6-1.3 0-.9.6-1.3 1.4-1.3.8 0 1.5.5 2 1.1l2.9-3.2-.2-.2-.7.8c-1.1-1-1.7-1.3-3-1.5V5l8 14h.6V5c1.5-.1 2.9-1.3 2.9-3zm7.3 13.1L57.9 17l-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM76.7 8l-.7.5-1.9-1.6-2.2 2 .9.9v7.5l-2.4-1.5V9.6l.8-.5-2.3-2.2-2.2 2 .9.9V17l-.3.2-2.1-1.5v-6c0-1.4-.7-1.8-1.5-2.3-.7-.5-1.1-.8-1.1-1.5 0-.6.6-.9.9-1.1v-.2c-.8 0-2.9.8-2.9 2.7 0 1 .5 1.4 1 1.9s1 .9 1 1.8v5.8l-1.1.8.2.2 1-.8 2.3 2 2.5-1.7 2.8 1.7 5.3-3.1V9.2l1.3-1-.2-.2zm18.6-5.5l-1 .9-2.2-2-3.3 2.4V1.6h-.3l.1 16.2c-.3 0-1.2-.2-1.9-.4l-.2-13.5c0-1-.7-2.4-2.5-2.4s-3 1.4-3 2.8h.3c.1-.6.4-1.1 1-1.1s1.1.4 1.1 1.7v3.9c-1.8.1-2.9 1.1-2.9 2.4 0 .8.4 2 1.6 2V13c-.4-.2-.5-.5-.5-.7 0-.6.5-.8 1.3-.8h.4v6.2c-1.5.5-2.1 1.6-2.1 2.8 0 1.7 1.3 2.9 3.3 2.9 1.4 0 2.6-.2 3.8-.5 1-.2 2.3-.5 2.9-.5.8 0 1.1.4 1.1.9 0 .7-.3 1-.7 1.1v.2c1.6-.3 2.6-1.3 2.6-2.8s-1.5-2.4-3.1-2.4c-.8 0-2.5.3-3.7.5-1.4.3-2.8.5-3.2.5-.7 0-1.5-.3-1.5-1.3 0-.8.7-1.5 2.4-1.5.9 0 2 .1 3.1.4 1.2.3 2.3.6 3.3.6 1.5 0 2.8-.5 2.8-2.6V3.7l1.2-1-.2-.2zm-4.1 6.1c-.3.3-.7.6-1.2.6s-1-.3-1.2-.6V4.2l1-.7 1.4 1.3v3.8zm0 3c-.2-.2-.7-.5-1.2-.5s-1 .3-1.2.5V9c.2.2.7.5 1.2.5s1-.3 1.2-.5v2.6zm0 4.7c0 .8-.5 1.6-1.6 1.6h-.8V12c.2-.2.7-.5 1.2-.5s.9.3 1.2.5v4.3zm13.7-7.1l-3.2-2.3-4.9 2.8v6.5l-1 .8.1.2.8-.6 3.2 2.4 5-3V9.2zm-5.4 6.3V8.3l2.5 1.8v7.1l-2.5-1.7zm14.9-8.4h-.2c-.3.2-.6.4-.9.4-.4 0-.9-.2-1.1-.5h-.2l-1.7 1.9-1.7-1.9-3 2 .1.2.8-.5 1 1.1v6.3l-1.3 1 .2.2.6-.5 2.4 2 3.1-2.1-.1-.2-.9.5-1.2-1V9c.5.5 1.1 1 1.8 1 1.4.1 2.2-1.3 2.3-2.9zm12 9.6L123 19l-4.6-7 3.3-5.1h.2c.4.4 1 .8 1.7.8s1.2-.4 1.5-.8h.2c-.1 2-1.5 3.2-2.5 3.2s-1.5-.5-2.1-.8l-.3.5 5 7.4 1-.6v.1zm-11-.5l-1.3 1 .2.2.6-.5 2.2 2 3-2-.2-.2-.8.5-1-1V.8h-.1l-3.6 2.4v.2c.4.2 1 .3 1 1.5v11.3zM143 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8-1.3-.4-2.5-.8-3.5-.8-2 0-3.4 1.5-3.4 3.2 0 1.5 1.1 2 1.5 2.2l.1-.2c-.3-.2-.6-.4-.6-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8V9l-1.5 1.3v.1l1.5 1.3V16c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2c.5-1.3 1.6-2.2 2.6-2.9l-.1-.2c-3 .8-5.7 3.5-5.7 6.9 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1L140 8.8v-3c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7.1-1.5.3-2.1l2.1-.9-.1 6.2zm12.2-12h-.1l-2 1.7v.1l1.7 1.9h.2l2-1.7v-.1l-1.8-1.9zm3 14.8l-.8.5-1-1V9.3l1-.7-.2-.2-.7.6-1.8-2.1-2.9 2 .2.3.7-.5.9 1.1v6.5l-1.3 1 .1.2.7-.5 2.2 2 3-2-.1-.3zm16.7-.1l-.7.5-1.1-1V9.3l1-.8-.2-.2-.8.7-2.3-2.1-3 2.1-2.3-2.1L154 9l-1.8-2.1-2.9 2 .1.3.7-.5 1 1.1v6.5l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.9-.6 1.5 1.4v6l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.8-.5 1.6 1.4v6l-.7.7 2.3 2.1 3.1-2.1v-.3zm8.7-1.5l-2.5 1.9-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.8l3.5 2.5 4.5-3.6-.1-.3zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zm14.1-.9l-1.9-1.5c1.3-1.1 1.8-2.6 1.8-3.6v-.6h-.2c-.2.5-.6 1-1.4 1-.8 0-1.3-.4-1.8-1L176 9.3v3.6l1.7 1.3c-1.7 1.5-2 2.5-2 3.3 0 1 .5 1.7 1.3 2l.1-.2c-.2-.2-.4-.3-.4-.8 0-.3.4-.8 1.2-.8 1 0 1.6.7 1.9 1l4.3-2.6v-3.6h-.1zm-1.1-3c-.7 1.2-2.2 2.4-3.1 3l-1.1-.9V8.1c.4 1 1.5 1.8 2.6 1.8.7 0 1.1-.1 1.6-.4zm-1.7 8c-.5-1.1-1.7-1.9-2.9-1.9-.3 0-1.1 0-1.9.5.5-.8 1.8-2.2 3.5-3.2l1.2 1 .1 3.6z"
></path>
</svg>
</a>
</div>
<div class="nav__right">
<button type="button" class="subscribe">SUBSCRIBE NOW</button>
<button type="button" class="subscribe">LOG IN</button>
</div>
</nav>
</header>
<main class="main width-100">
<section class="main-article">
<h1 class="main-title">Space Ripples Reveal Big Bang’s Smoking Gun</h1>
<figure class="cont-img">
<img
class="main-figure width-100"
src="./images/18cosmos-superJumbo.jpg"
alt=""
/>
<figcaption class="caption">
Alan Guth was one of the first physicists to hypothesize the
existence of inflation, which explains how the universe expanded so
uniformly and so quickly in the instant after the Big Bang 13.8
billion years ago.
<span class="author black">Rick Friedman for The New York Times</span>
</figcaption>
</figure>
</section>
<div class="article-content">
<div class="publish-date flex-space-btwn">
<div class="info-article">
<p>By <span>Dennis Overbye</span></p>
<time datetime="2014-02-14">2014-02-14</time>
</div>
<div class="article-social-media">
<svg class="css-1acmxgr" viewBox="0 0 7 15" width="7" height="15">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M4.775 14.163V7.08h1.923l.255-2.441H4.775l.004-1.222c0-.636.06-.977.958-.977H6.94V0H5.016c-2.31 0-3.123 1.184-3.123 3.175V4.64H.453v2.44h1.44v7.083h2.882z"
fill="#000"
></path>
</svg>
<svg viewBox="0 0 13 10" class="css-1acmxgr" width="13" height="10">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M5.987 2.772l.025.425-.429-.052c-1.562-.2-2.927-.876-4.086-2.011L.93.571.784.987c-.309.927-.111 1.906.533 2.565.343.364.266.416-.327.2-.206-.07-.386-.122-.403-.096-.06.06.146.85.309 1.161.223.434.678.858 1.176 1.11l.42.199-.497.009c-.481 0-.498.008-.447.19.172.564.85 1.162 1.606 1.422l.532.182-.464.277a4.833 4.833 0 0 1-2.3.641c-.387.009-.704.044-.704.07 0 .086 1.047.572 1.657.762 1.828.564 4 .32 5.631-.641 1.159-.685 2.318-2.045 2.859-3.363.292-.702.583-1.984.583-2.6 0-.398.026-.45.507-.927.283-.277.55-.58.6-.667.087-.165.078-.165-.36-.018-.73.26-.832.226-.472-.164.266-.278.584-.78.584-.928 0-.026-.129.018-.275.096a4.79 4.79 0 0 1-.755.294l-.464.148-.42-.286C9.66.467 9.335.293 9.163.24 8.725.12 8.055.137 7.66.276c-1.074.39-1.752 1.395-1.674 2.496z"
fill="#000"
></path>
</svg>
<svg viewBox="0 0 15 9" class="css-1acmxgr" width="15" height="9">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M.906 8.418V0L5.64 4.76.906 8.419zm13 0L9.174 4.761 13.906 0v8.418zM7.407 6.539l-1.13-1.137L.907 9h13l-5.37-3.598-1.13 1.137zM1.297 0h12.22l-6.11 5.095L1.297 0z"
fill="#000"
></path>
</svg>
<svg class="css-107sgp6" viewBox="0 0 16 13" width="16" height="13">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M15.406 5.359L8.978 0v3.215C3.82 3.215.406 8.107.406 12.66 1.653 9.133 4.29 7.517 8.978 7.517v3.2l6.428-5.358z"
fill="#000"
></path>
</svg>
<svg
stroke="none"
width="16px"
height="25px"
viewBox="0 0 16 25"
class="css-ubw31m"
>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g stroke="#666" fill="none">
<path
fill="none"
d="M0.5,0.5 L0.5,24.5 L8.1716264,19.5137775 L15.5,24.4404006 L15.5,0.5 L0.5,0.5 Z"
></path>
</g>
</g>
</svg>
<i class="far fa-comment-alt">
<span class="black">857</span>
</i>
</div>
</div>
<div class="article-container">
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ratione,
dolores omnis. Dolor omnis rerum illum quos eum, et molestias maxime
voluptate vel labore corporis corrupti voluptas modi blanditiis
distinctio tenetur. Animi doloribus assumenda vitae! Esse pariatur
dolor obcaecati voluptatem numquam animi id ipsa amet laudantium hic
aliquid earum beatae odio, doloremque quaerat quas doloribus ipsam
qui ad nam eius provident. Quas, quod. Est illo reiciendis rem ipsum
consequuntur? Nemo deserunt, obcaecati voluptate, non sit architecto
eius aliquid soluta omnis qui laboriosam quasi unde rem inventore
ea, hic nobis laudantium? Aliquam.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor
corrupti, maxime assumenda consectetur ratione aliquid dolorum illo
voluptates optio ea, alias quas magni itaque. Error molestias
voluptatum eum corporis id? Facere enim consequuntur, incidunt
minima labore dolorem voluptate ex eos excepturi fugit natus qui
ipsum. Ullam officia vitae voluptatibus dolorem odit esse eos sed
dolorum deserunt, dolores voluptas. Accusamus, itaque. Quis, ipsa
blanditiis consequatur omnis reiciendis, aliquam iusto perspiciatis
non, magni earum molestias quaerat voluptatibus ex. Minus rem est,
quia unde sunt fuga quibusdam aliquam tempora, officia, eum dolorum
amet!
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Harum
doloribus cupiditate iure exercitationem expedita saepe autem
pariatur quaerat nobis praesentium ducimus impedit iusto, voluptatem
consequatur animi delectus provident, amet asperiores. Ab neque
corrupti officiis id deleniti laborum tempora voluptates! Iusto
libero tenetur dolorum at voluptatum quasi dolore. Neque inventore
nihil, nulla suscipit est adipisci alias, beatae earum iste corrupti
consectetur! Distinctio assumenda voluptates eaque neque iste
veritatis reprehenderit praesentium nemo delectus explicabo aperiam
nulla commodi possimus omnis quisquam obcaecati laboriosam,
quibusdam repellat voluptatibus eligendi optio blanditiis, harum
recusandae. Sequi, ab?
</p>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quibusdam
vel, exercitationem deleniti libero consequatur eum quas possimus
nihil officiis eaque, repudiandae et quia dolores officia excepturi
perspiciatis ratione laborum aut?
</p>
</div>
<div class="advertisement"></div>
<div class="article-container">
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Laboriosam
expedita aliquam, eum possimus, ipsa quod nemo architecto animi
totam in perferendis odit quos voluptatum suscipit ipsum sed earum
eaque necessitatibus?
</p>
<p class="article-info">
Reaching back across 13.8 billion years to
<a href="#">first sliver of cosmic time</a>
with telescopes at the South Pole, a team of astronomers led by John
M. Kovac of the Harvard-Smithsonian Center for Astrophysics detected
ripples in the fabric of space-time — so-called
<a href="">gravitational waves</a>
— the signature of a universe being wrenched violently apart when it
was roughly a trillionth of a trillionth of a trillionth of a second
old. They are the long-sought smoking-gun evidence of inflation,
proof, Dr. Kovac and his colleagues say, that Dr. Guth was correct.
</p>
<div class="ad-subscribe">
<hr class="ad-division" />
<p class="ad-subscribe__grateful">
Thanks for reading The Times.
</p>
<a
class="ad-subscribe__link"
href="https://www.nytimes.com/subscription?campaignId=9L9L9"
>Subscribe to the time</a
>
<hr class="ad-division" />
</div>
<p class="article-info">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vero
quaerat pariatur aliquam, reiciendis veniam possimus harum ipsum
itaque ratione eius odit, amet, molestias dicta blanditiis nulla
asperiores rem nam maiores?
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Et culpa
aliquam vitae facere aut hic iure, necessitatibus id animi libero
magni explicabo. Doloremque voluptates itaque ducimus quis,
laudantium repudiandae maiores?
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Minima
tenetur laboriosam ratione laborum aliquid. Natus, nesciunt dicta
autem dolor nam alias placeat suscipit consequuntur omnis animi!
Quidem nesciunt voluptates error.Ea qui velit nam voluptatibus sed
nostrum maiores facilis, cupiditate rerum, culpa amet eaque fuga
quis accusantium harum, id corporis sequi et blanditiis aliquid
libero numquam ipsam distinctio dolores? Enim.
</p>
</div>
<aside class="editor-pick">
<h2 class="editor-pick__title">Editor's Pick</h2>
<a class="editor-pick__link flex-space-btwn" href="">
<img
class="editor-pick__link-img"
src="https://static01.nyt.com/images/2020/08/16/nyregion/16diary-illos-04/16diary-illos-04-square640.jpg?quality=75&auto=webp&disable=upscale&width=350"
alt=""
/>
<h3 class="editor-pick__link-title flex-space-btwn black">
‘I Saw a Man Standing on One of the Paths in a Densely Wooded
Area’
</h3>
</a>
<a class="editor-pick__link flex-space-btwn" href="">
<img
class="editor-pick__link-img"
src="https://static01.nyt.com/images/2020/08/13/business/13scratch-image00/13scratch-image00-square640.jpg?quality=75&auto=webp&disable=upscale&width=3500"
alt=""
/>
<h3 class="editor-pick__link-title black">
A Century-Old Moving Company Says the Summer of Covid Is ‘Insane’’
</h3>
</a>
<a class="editor-pick__link flex-space-btwn" href="">
<img
class="editor-pick__link-img"
src="https://static01.nyt.com/images/2020/08/10/t-magazine/art/Tadobe-slide-AOKS/Tadobe-slide-AOKS-square640-v2.jpg?quality=75&auto=webp&disable=upscale&width=3500"
alt=""
/>
<h3 class="editor-pick__link-title black">
The Acclaimed Soba Maker Who Champions Home Cooking’
</h3>
</a>
<a class="editor-pick__link flex-space-btwn ad-bg" href="">
<img
class="editor-pick__link-img"
src="https://static01.nyt.com/images/2020/08/13/business/13scratch-image00/13scratch-image00-square640.jpg?quality=75&auto=webp&disable=upscale&width=3500"
alt=""
/>
<h3 class="editor-pick__link-title">
‘I Saw a Man Standing on One of the Paths in a Densely Wooded
Area’
</h3>
</a>
</aside>
<div class="advertisement"></div>
<article class="article-container">
<h2 class="article-subtitle">‘As Big as It Gets’</h2>
<p class="article-info">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Natus cum
vel maxime ipsam fugiat ut nobis sed rem quasi sint consectetur quam
animi quisquam, corrupti, delectus adipisci id molestias maiores!
Excepturi, obcaecati expedita. Laboriosam, suscipit quasi itaque
quod a esse et odit ullam provident numquam libero consequuntur
laudantium rerum. Ipsam, reiciendis? Et asperiores quis rem,
molestias architecto delectus voluptatibus corporis? Rem earum,
ipsam unde cumque, vitae, repellendus mollitia obcaecati maxime iste
accusantium perspiciatis. Fuga blanditiis, quia molestiae dolorem ab
accusamus veritatis hic, maxime explicabo consectetur vel. Deserunt
sapiente ducimus alias?
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore
deleniti fuga molestias reiciendis vero quasi illo odit cum neque
sequi dolore delectus, sint ut voluptatem veniam dicta architecto,
voluptatum temporibus.
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptatibus beatae molestiae, dignissimos vero, magnam cumque est,
voluptate accusantium provident quod dicta. Cumque vitae eveniet
optio quam quis aliquam, similique rem?
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis,
ipsum est? Sapiente, cum consequuntur sed suscipit ratione id
consequatur esse reiciendis! Eum assumenda eligendi tempore quas
incidunt, veniam nam aut.
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus dolor
eos odio impedit maiores voluptas voluptatem id explicabo, amet
numquam, praesentium eveniet nostrum laboriosam! Impedit voluptatem
provident ad inventore pariatur!Doloremque dicta illum non quasi
sapiente repudiandae animi perspiciatis alias dolor aliquam iure
eaque expedita, necessitatibus in assumenda temporibus aliquid porro
rem esse voluptates. Rerum nihil commodi veniam nostrum cupiditate!
</p>
</article>
<div class="graphic">
<h2 class="graphic__title">The Theory of Inflation</h2>
<p>
Astronomers have found evidence to support the theory of inflation,
which explains how the universe expanded so uniformly and so quickly
in the instant after the Big Bang 13.8 billion years ago.
</p>
<div class="graphic__article-container">
<article class="graphic__article">
<h2>
<img
class="article-image"
src="images/inflation-945_1.jpg"
alt="Description of the example"
/>
</h2>
<p>
<span> THE UNIVERSE</span>
is just under 14 billion years old. From our position in the
Milky Way galaxy, we can observe a sphere that is now about 92
billion light-years across. But there's a mystery. Wherever we
look, the universe has an even temperature.
</p>
</article>
<article class="graphic__article">
<h2>
<img
class="article-image"
src="images/inflation-945_10.jpg"
alt="NOT ENOUGH TIME graphic"
/>
</h2>
<p>
<span>NOT ENOUGH TIME</span>
The universe is not old enough for light to have traveled the
vast distance from one side of the universe to the other, and
there has not been enough time for scattered patches of hot and
cold to mix into an even temperature.
</p>
</article>
<article class="graphic__article">
<h2>
<img
class="article-image"
src="images/inflation-945_11.jpg"
alt="DISTANT COFFEE graphic"
/>
</h2>
<p>
<span>DISTANT COFFEE</span>
At a smaller scale, imagine using a telescope to look a mile in
one direction. You see a coffee cup, and from the amount of
steam, you can estimate its temperature and how much it has
cooled.
</p>
</article>
<article class="graphic__article">
<h2>
<img
class="article-image"
src="images/inflation-945_12.jpg"
alt="COFFEE EVERYWHERE graphic"
/>
</h2>
<p>
<span>COFFEE EVERYWHERE</span>
Now turn around and look a mile in the other direction. You see
a similar coffee cup, at exactly the same temperature.
Coincidence? Maybe. But if you see a similar cup in every
direction, you might want to look for another explanation.
</p>
</article>
<article class="graphic__article">
<h2>
<img
class="article-image"
src="./images/inflation-945_12.jpg"
alt="STILL NOT ENOUGH TIME graphic"
/>
</h2>
<p>
<span>STILL NOT ENOUGH TIME</span>
There has not been enough time to carry coffee cups from place
to place before they get cold. But if all the coffee cups were
somehow filled from a single coffee pot, all at the same time,
that might explain their even temperature.
</p>
</article>
<article class="graphic__article">
<h2>
<img
class="article-image"
src="images/inflation-945_13.jpg"
alt="INFLATION graphic"
/>
</h2>
<p>
<span>INFLATION </span>
solves this problem. The theory proposes that, less than a
trillionth of a second after the Big Bang, the universe expanded
faster than the speed of light. Tiny ripples in the violently
expanding energy field eventually grew into the large-scale
structures of the universe.
</p>
</article>
<article class="graphic__article">
<h2>
<img
class="article-image"
src="images/inflation-945_11.jpg"
alt="FLUCTUATION graphic"
/>
</h2>
<p>
<span>FLUCTUATION</span>
Astronomers have now detected evidence of these ancient
fluctuations in swirls of polarized light in the cosmic
background radiation, which is energy left over from the early
universe. These are gravitational waves predicted by Einstein.
</p>
</article>
<article class="graphic__article">
<h2>
<img
class="article-image"
src="images/inflation-945_14.jpg"
alt="EXPANSION graphic"
/>
</h2>
<p>
<span>EXPANSION </span>
Returning to our coffee, imagine a single, central pot expanding
faster than light and cooling to an even temperature as it
expands. That is something like inflation. And the structure of
the universe mirrors the froth and foam of the original pot.
</p>
</article>
<div class="by-author">
<hr class="separator-photo" />
<p class="author black">By LARRY BUCHANAN and JONATHAN CORUM</p>
</div>
</div>
</div>
<div class="article-container">
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur,
similique odit. Omnis, maiores ad, voluptate facere aliquam commodi
eligendi qui molestiae autem tempore ex corrupti amet fuga quae in
mollitia.
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur,
similique odit. Omnis, maiores ad, voluptate facere aliquam commodi
eligendi qui molestiae autem tempore ex corrupti amet fuga quae in
mollitia.
</p>
</div>
<div class="advertisement"></div>
<div class="article-container">
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur,
similique odit.
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur,
similique odit. Omnis, maiores ad, voluptate facere aliquam commodi
eligendi qui molestiae autem tempore ex corrupti amet fuga quae in
mollitia.
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur,
similique odit. Omnis, maiores ad, voluptate facere aliquam commodi
eligendi qui molestiae autem tempore ex corrupti amet fuga quae in
mollitia.
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur,
similique odit. Omnis, maiores ad, voluptate facere aliquam commodi
eligendi qui molestiae autem tempore ex corrupti amet fuga quae in
mollitia.
</p>
</div>
<figure class="video-container">
<iframe
width="600"
height="358"
src="https://www.youtube.com/embed/ZlfIVEy_YOA"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<figcaption class="caption">
Stanford Professor Andrei Linde celebrates physics breakthrough
<span class="author black">Video by StanfordUniversity</span>
</figcaption>
</figure>
<div class="article-container">
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque
architecto assumenda odit ea, tenetur eligendi est, corrupti ipsum
aperiam hic minus accusantium voluptatum. Beatae numquam
perspiciatis ut provident consequuntur pariatur? Aliquam, quidem
dignissimos error hic officiis illum nemo est accusantium pariatur
voluptates et quis sapiente, perferendis non esse vel cum tempore!
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque
architecto assumenda odit ea, tenetur eligendi est, corrupti ipsum
aperiam hic minus accusantium voluptatum. Beatae numquam
perspiciatis ut provident consequuntur pariatur? Aliquam, quidem
dignissimos error hic officiis illum nemo est accusantium pariatur
voluptates et quis sapiente, perferendis non esse vel cum tempore!
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque
architecto assumenda odit ea, tenetur eligendi est, corrupti ipsum
aperiam hic minus accusantium voluptatum. Beatae numquam
perspiciatis ut provident consequuntur pariatur? Aliquam, quidem
dignissimos error hic officiis illum nemo est accusantium pariatur
voluptates et quis sapiente, perferendis non esse vel cum tempore!
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque
architecto assumenda odit ea, tenetur eligendi est, corrupti ipsum
aperiam hic minus accusantium voluptatum. Beatae numquam
perspiciatis ut provident consequuntur pariatur? Aliquam, quidem
dignissimos error hic officiis illum nemo est accusantium pariatur
voluptates et quis sapiente, perferendis non esse vel cum tempore!
</p>
</div>
<div class="advertisement"></div>
<figure class="video-container">
<img
class="img-article width-100"
src="images/18cosmos-2-superJumbo.jpg"
alt=""
/>
<figcaption class="author-picture width-100">
The Bicep2 telescope, in the foreground, was used to detect the
faint spiraling gravity patterns — the signature of a universe being
wrenched violently apart at its birth.
<span class="author black">Steffen Richter/Associated Press</span>
</figcaption>
</figure>
<div class="article-container">
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Consequuntur quia nam eveniet eum dolor velit error sequi assumenda
beatae sunt animi earum, et similique id recusandae dignissimos
iure, facere corporis?
</p>
<p class="article-info">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Corporis
quod impedit id vitae, nisi error accusamus totam quas aliquid rerum
sed, nesciunt quam ipsa doloribus tempore optio deleniti suscipit!
Dolorem?
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur
cumque dolorem dicta nisi rem autem rerum explicabo alias suscipit
eveniet deleniti, cupiditate unde consequatur esse totam accusamus,
maxime architecto atque!
</p>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Suscipit
assumenda libero ducimus
</p>
<p class="article-info">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Distinctio
vitae dolor praesentium aliquam? Modi ab perspiciatis eveniet
obcaecati! Alias animi exercitationem maiores ex sunt optio sit
ducimus quas ullam facere?
</p>
<h2 class="graphic-title">A Special time</h2>
<p class="article-info">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deleniti
cumque velit praesentium ducimus ullam quae temporibus quidem sunt
harum ut qui beatae, pariatur, quas earum modi autem mollitia
voluptatibus distinctio!
</p>
</div>
<div class="social-media">
<p>
A version of this article appears in print on March 18, 2014,
Section A, Page 1 of the New York edition with the headline: Space
Ripples Reveal Big Bang’s Smoking Gun. Order
<a class="subscribe-link" href="#">Reprints</a>
<a class="subscribe-link" href="#">Today’s Paper </a>
<a class="subscribe-link" href="#">Subscribe</a>
</p>
<div class="social flex-space-btwn">
<a target="_blank" href="#" class="comments-btn">
READ 615 COMMENTS
</a>
<ul class="social__list">
<li class="social__list-item">
<a target="_blank" href="shorturl.at/zGHOY">
<i class="fab fa-facebook black"></i>
</a>
</li>
<li class="social__list-item">
<a target="_blank" href="shorturl.at/jkxK9">
<i class="fab fa-twitter black"></i>
</a>
</li>
<li class="social__list-item">
<a href="mailto:webmaster@example.com">
<i class="fas fa-envelope black"></i>
</a>
</li>
<li class="social__list-item">
<a href="#">
<i class="fas fa-share black"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<section class="adds-section">
<div class="add-articles">
<hr />
<br />
<h3 class="third-title">More in Space and Astronomy</h3>
<br />
<div class="more">
<div class="more-articles">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container width-100">
<img
class="width-100"
src="./images/14SCI-BETELGEUSE1-threeByTwoSmallAt2X.jpg"
alt=""
/>
<figcaption class="caption-article">
European Southern Observatory
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T"
>
This Star Looked Like It Would Explode. Maybe It Just Sneezed
</a>
<span class="date-article">Aug. 14</span>
</p>
</div>
<div class="more-articles">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img
src="./images/09SCI-KUIPER1-threeByTwoSmallAt2X_2.jpg"
alt=""
/>
<figcaption class="caption-article">
European Southern Observatory
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/sCM5vmv4
"
>
Amazon Satellites Add to Astronomers’ Worries About the Night
</a>
Sky <span class="date-article">Aug. 10</span>
</p>
</div>
<div class="more-articles">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img
src="./images/30hpmars-threeByTwoSmallAt2X-v3_5.jpg"
alt=""
/>
<figcaption class="caption-article">
European Southern Observatory
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
‘Thanks for Flying SpaceX’: NASA Astronauts Safely Splash Down
After Journey From Orbit
</a>
<span class="date-article">Aug. 2</span>
</p>
</div>
<div class="more-articles second-line">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img
src="./images/03sci-splashdown-floater-A1-threeByTwoSmallAt2X_3.jpg"
alt=""
/>
<figcaption class="caption-article">
European Southern Observatory
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
A Star Went Supernova in 1987. Where Is It Now?
</a>
<span class="date-article">Aug. 8</span>
</p>
</div>
<div class="more-articles second-line">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img
src="./images/00SCI-OUTTHERE-promo-threeByTwoSmallAt2X_4.jpg"
alt=""
/>
<figcaption class="caption-article">
European Southern Observatory
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
NASA Launches Perseverance Rover, Capping Summer of Missions
to Mars
</a>
<span class="date-article">July 30</span>
</p>
</div>
<div class="more-articles second-line">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img
src="./images/30hpmars-threeByTwoSmallAt2X-v3_5.jpg"
alt=""
/>
<figcaption class="caption-article">
European Southern Observatory
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
How NASA Found the Ideal Hole on Mars to Land In
</a>
<span class="date-article">July 30</span>
</p>
</div>
</div>
<hr />
<br />
<h3 class="third-title">Editors’ Picks</h3>
<br />
<div class="more">
<div class="more-articles">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img src="./images/editors1.jpg" alt="" />
<figcaption class="caption-article">
One Mask Rule Most New Yorkers Ignore
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
This Star Looked Like It Would Explode. Maybe It Just Sneezed
</a>
<span class="date-article">Aug. 14</span>
</p>
</div>
<div class="more-articles">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img src="./images/editors2.jpg" alt="" />
<figcaption class="caption-article">
Hiroko Masuike/The New York Times
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
How Queer Women Powered the Suffrage Movement
</a>
<span class="date-article">Aug. 10</span>
</p>
</div>
<div class="more-articles">
<a
class="black"
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
<figure class="image-container">
<img src="./images/editors3.jpg" alt="" />
<figcaption class="caption-article">
Hiroko Masuike/The New York Times
</figcaption>
</figure>
</a>
<p>
<a
target="_blank"
rel="noopener noreferrer"
href="https://minified.cc/15Eu6r1T
"
>
Sorry, the World’s Biggest Bike Maker Can’t Help You Buy a
Bike Right Now
</a>
<span class="date-article">Aug. 2</span>
</p>
</div>
</div>
</div>
<aside class="add-popular">
<hr />
<br />
<h3>Most Popular</h3>
<br />
<ul class="add-popular__list">
<li class="add-popular__list-item">
<a href=""
>G.O.P.-Led Senate Panel Details Ties Between 2016 Trump
Campaign and Russia</a
>
</li>
<li class="add-popular__list-item">
<a href="">Save the Gaiters!</a>
</li>
<li class="add-popular__list-item">
<a href=""
>Kamala Harris Cartoon in Murdoch Paper Is Denounced as
Racist</a
>
</li>
<li class="add-popular__list-item">
<a href=""
>She Was Selling Honey to Survive. Then Mel Gibson Threatened to
Sue.</a
>
</li>
<li class="add-popular__list-item">
<a href=""
>Opinion: Want to Flee the City for Suburbia? Think Again</a
>
</li>
<li class="add-popular__list-item">
<a href=""
>Opinion: Highs and Lows of the Democratic Convention</a
>
</li>
<li class="add-popular__list-item">
<a href=""
>Ellen DeGeneres Tells Her Staff That 3 Top Producers Are Out</a
>
</li>
<li class="add-popular__list-item">
<a href=""
>She Was in a Grueling 340-Mile Race. Then Came a Highway, and
an S.U.V.</a
>
</li>
<li class="add-popular__list-item">
<a href=""
>All the Republicans Who Have Decided Not to Support Trump</a
>
</li>
<li class="add-popular__list-item">
<a href=""
>What Happened When Homeless Men Moved Into a Liberal
Neighborhood</a
>
</li>
</ul>
</aside>
</section>
</main>
<footer class="footer">
<div class="upper-footer">
<div class="content">
<hr class="separator-content" />
<div class="new-logo">
<svg class="css-oylsik st-current" viewBox="0 0 184 25" fill="#000">
<path
d="M13.8 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8C6.2 1.4 5 1 4 1 2 1 .6 2.5.6 4.2c0 1.5 1.1 2 1.5 2.2l.1-.2c-.2-.2-.5-.4-.5-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8v3.1L9 10.2v.1l1.5 1.3v4.3c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2C3.6 6.9 4.7 6 5.8 5.4l-.1-.3c-3 .8-5.7 3.6-5.7 7 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1l-1.6-1.3V5.8c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7 0-1.5.2-2.1l2.1-.9v6.2zm10.6 2.3l-1.3 1 .2.2.6-.5 2.2 2 3-2-.1-.2-.8.5-1-1V9.4l.8-.6 1.7 1.4v6.1c0 3.8-.8 4.4-2.5 5v.3c2.8.1 5.4-.8 5.4-5.7V9.3l.9-.7-.2-.2-.8.6-2.5-2.1L18.5 9V.8h-.2l-3.5 2.4v.2c.4.2 1 .4 1 1.5l-.1 11.3zM34 15.1L31.5 17 29 15v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM53.1 2c0-.3-.1-.6-.2-.9h-.2c-.3.8-.7 1.2-1.7 1.2-.9 0-1.5-.5-1.9-.9l-2.9 3.3.2.2 1-.9c.6.5 1.1.9 2.5 1v8.3L44 3.2c-.5-.8-1.2-1.9-2.6-1.9-1.6 0-3 1.4-2.8 3.6h.3c.1-.6.4-1.3 1.1-1.3.5 0 1 .5 1.3 1v3.3c-1.8 0-3 .8-3 2.3 0 .8.4 2 1.6 2.3v-.2c-.2-.2-.3-.4-.3-.7 0-.5.4-.9 1.1-.9h.5v4.2c-2.1 0-3.8 1.2-3.8 3.2 0 1.9 1.6 2.8 3.4 2.7v-.2c-1.1-.1-1.6-.6-1.6-1.3 0-.9.6-1.3 1.4-1.3.8 0 1.5.5 2 1.1l2.9-3.2-.2-.2-.7.8c-1.1-1-1.7-1.3-3-1.5V5l8 14h.6V5c1.5-.1 2.9-1.3 2.9-3zm7.3 13.1L57.9 17l-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.6l-1 .8.2.2.9-.7 3.4 2.5 4.5-3.6-.1-.4zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zM76.7 8l-.7.5-1.9-1.6-2.2 2 .9.9v7.5l-2.4-1.5V9.6l.8-.5-2.3-2.2-2.2 2 .9.9V17l-.3.2-2.1-1.5v-6c0-1.4-.7-1.8-1.5-2.3-.7-.5-1.1-.8-1.1-1.5 0-.6.6-.9.9-1.1v-.2c-.8 0-2.9.8-2.9 2.7 0 1 .5 1.4 1 1.9s1 .9 1 1.8v5.8l-1.1.8.2.2 1-.8 2.3 2 2.5-1.7 2.8 1.7 5.3-3.1V9.2l1.3-1-.2-.2zm18.6-5.5l-1 .9-2.2-2-3.3 2.4V1.6h-.3l.1 16.2c-.3 0-1.2-.2-1.9-.4l-.2-13.5c0-1-.7-2.4-2.5-2.4s-3 1.4-3 2.8h.3c.1-.6.4-1.1 1-1.1s1.1.4 1.1 1.7v3.9c-1.8.1-2.9 1.1-2.9 2.4 0 .8.4 2 1.6 2V13c-.4-.2-.5-.5-.5-.7 0-.6.5-.8 1.3-.8h.4v6.2c-1.5.5-2.1 1.6-2.1 2.8 0 1.7 1.3 2.9 3.3 2.9 1.4 0 2.6-.2 3.8-.5 1-.2 2.3-.5 2.9-.5.8 0 1.1.4 1.1.9 0 .7-.3 1-.7 1.1v.2c1.6-.3 2.6-1.3 2.6-2.8s-1.5-2.4-3.1-2.4c-.8 0-2.5.3-3.7.5-1.4.3-2.8.5-3.2.5-.7 0-1.5-.3-1.5-1.3 0-.8.7-1.5 2.4-1.5.9 0 2 .1 3.1.4 1.2.3 2.3.6 3.3.6 1.5 0 2.8-.5 2.8-2.6V3.7l1.2-1-.2-.2zm-4.1 6.1c-.3.3-.7.6-1.2.6s-1-.3-1.2-.6V4.2l1-.7 1.4 1.3v3.8zm0 3c-.2-.2-.7-.5-1.2-.5s-1 .3-1.2.5V9c.2.2.7.5 1.2.5s1-.3 1.2-.5v2.6zm0 4.7c0 .8-.5 1.6-1.6 1.6h-.8V12c.2-.2.7-.5 1.2-.5s.9.3 1.2.5v4.3zm13.7-7.1l-3.2-2.3-4.9 2.8v6.5l-1 .8.1.2.8-.6 3.2 2.4 5-3V9.2zm-5.4 6.3V8.3l2.5 1.8v7.1l-2.5-1.7zm14.9-8.4h-.2c-.3.2-.6.4-.9.4-.4 0-.9-.2-1.1-.5h-.2l-1.7 1.9-1.7-1.9-3 2 .1.2.8-.5 1 1.1v6.3l-1.3 1 .2.2.6-.5 2.4 2 3.1-2.1-.1-.2-.9.5-1.2-1V9c.5.5 1.1 1 1.8 1 1.4.1 2.2-1.3 2.3-2.9zm12 9.6L123 19l-4.6-7 3.3-5.1h.2c.4.4 1 .8 1.7.8s1.2-.4 1.5-.8h.2c-.1 2-1.5 3.2-2.5 3.2s-1.5-.5-2.1-.8l-.3.5 5 7.4 1-.6v.1zm-11-.5l-1.3 1 .2.2.6-.5 2.2 2 3-2-.2-.2-.8.5-1-1V.8h-.1l-3.6 2.4v.2c.4.2 1 .3 1 1.5v11.3zM143 2.9c0-2-1.9-2.5-3.4-2.5v.3c.9 0 1.6.3 1.6 1 0 .4-.3 1-1.2 1-.7 0-2.2-.4-3.3-.8-1.3-.4-2.5-.8-3.5-.8-2 0-3.4 1.5-3.4 3.2 0 1.5 1.1 2 1.5 2.2l.1-.2c-.3-.2-.6-.4-.6-1 0-.4.4-1.1 1.4-1.1.9 0 2.1.4 3.7.9 1.4.4 2.9.7 3.7.8V9l-1.5 1.3v.1l1.5 1.3V16c-.8.5-1.7.6-2.5.6-1.5 0-2.8-.4-3.9-1.6l4.1-2V6l-5 2.2c.5-1.3 1.6-2.2 2.6-2.9l-.1-.2c-3 .8-5.7 3.5-5.7 6.9 0 4 3.3 7 7 7 4 0 6.6-3.2 6.6-6.5h-.2c-.6 1.3-1.5 2.5-2.6 3.1v-4.1l1.6-1.3v-.1L140 8.8v-3c1.5 0 3-1 3-2.9zm-8.7 11l-1.2.6c-.7-.9-1.1-2.1-1.1-3.8 0-.7.1-1.5.3-2.1l2.1-.9-.1 6.2zm12.2-12h-.1l-2 1.7v.1l1.7 1.9h.2l2-1.7v-.1l-1.8-1.9zm3 14.8l-.8.5-1-1V9.3l1-.7-.2-.2-.7.6-1.8-2.1-2.9 2 .2.3.7-.5.9 1.1v6.5l-1.3 1 .1.2.7-.5 2.2 2 3-2-.1-.3zm16.7-.1l-.7.5-1.1-1V9.3l1-.8-.2-.2-.8.7-2.3-2.1-3 2.1-2.3-2.1L154 9l-1.8-2.1-2.9 2 .1.3.7-.5 1 1.1v6.5l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.9-.6 1.5 1.4v6l-.8.8 2.3 1.9 2.2-2-.9-.9V9.3l.8-.5 1.6 1.4v6l-.7.7 2.3 2.1 3.1-2.1v-.3zm8.7-1.5l-2.5 1.9-2.5-2v-1.2l4.7-3.2v-.1l-2.4-3.6-5.2 2.8v6.8l3.5 2.5 4.5-3.6-.1-.3zm-5-1.7V8.5l.2-.1 2.2 3.5-2.4 1.5zm14.1-.9l-1.9-1.5c1.3-1.1 1.8-2.6 1.8-3.6v-.6h-.2c-.2.5-.6 1-1.4 1-.8 0-1.3-.4-1.8-1L176 9.3v3.6l1.7 1.3c-1.7 1.5-2 2.5-2 3.3 0 1 .5 1.7 1.3 2l.1-.2c-.2-.2-.4-.3-.4-.8 0-.3.4-.8 1.2-.8 1 0 1.6.7 1.9 1l4.3-2.6v-3.6h-.1zm-1.1-3c-.7 1.2-2.2 2.4-3.1 3l-1.1-.9V8.1c.4 1 1.5 1.8 2.6 1.8.7 0 1.1-.1 1.6-.4zm-1.7 8c-.5-1.1-1.7-1.9-2.9-1.9-.3 0-1.1 0-1.9.5.5-.8 1.8-2.2 3.5-3.2l1.2 1 .1 3.6z"
></path>
</svg>
</div>
<div class="footer-links flex-space-btwn">
<div class="content-links flex-space-btwn">
<ul>
<li class="span">News</li>
<li>
<a href="#" target="_blank" rel="noopener noreferrer"
>Home Page</a
>
</li>
<li>
<a href="#" target="_blank" rel="noopener noreferrer"
>World</a
>
</li>
<li>