404.html 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>404页面</title>
  6. <style>
  7. @import url("https://fonts.googleapis.com/css?family=Lato|Russo+One");
  8. *,
  9. *:after,
  10. *:before {
  11. box-sizing: border-box;
  12. }
  13. body {
  14. padding: 0;
  15. margin: 0;
  16. }
  17. .container {
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. width: 100%;
  22. height: 100vh;
  23. overflow: hidden;
  24. }
  25. .container-star {
  26. background-image: linear-gradient(to bottom, #292256 0%, #8446cf 70%, #a871d6 100%);
  27. }
  28. .container-star:after {
  29. background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(15, 10, 38, 0.2) 100%);
  30. content: "";
  31. width: 100%;
  32. height: 100%;
  33. position: absolute;
  34. top: 0;
  35. }
  36. .star-1 {
  37. position: absolute;
  38. border-radius: 50%;
  39. background-color: #ffffff;
  40. -webkit-animation: twinkle 5s infinite ease-in-out;
  41. animation: twinkle 5s infinite ease-in-out;
  42. }
  43. .star-1:after {
  44. height: 100%;
  45. width: 100%;
  46. -webkit-transform: rotate(90deg);
  47. transform: rotate(90deg);
  48. content: "";
  49. position: absolute;
  50. background-color: #fff;
  51. border-radius: 50%;
  52. }
  53. .star-1:before {
  54. background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
  55. position: absolute;
  56. border-radius: 50%;
  57. content: "";
  58. top: -20%;
  59. left: -50%;
  60. }
  61. .star-1:nth-of-type(1) {
  62. top: 78vh;
  63. left: 44vw;
  64. width: 9px;
  65. height: 3px;
  66. -webkit-animation-delay: 4s;
  67. animation-delay: 4s;
  68. }
  69. .star-1:nth-of-type(1):before {
  70. width: 18px;
  71. height: 18px;
  72. top: -250%;
  73. }
  74. .star-1:nth-of-type(2) {
  75. top: 94vh;
  76. left: 67vw;
  77. width: 6px;
  78. height: 2px;
  79. -webkit-animation-delay: 3s;
  80. animation-delay: 3s;
  81. }
  82. .star-1:nth-of-type(2):before {
  83. width: 12px;
  84. height: 12px;
  85. top: -250%;
  86. }
  87. .star-1:nth-of-type(3) {
  88. top: 41vh;
  89. left: 66vw;
  90. width: 6px;
  91. height: 2px;
  92. -webkit-animation-delay: 1s;
  93. animation-delay: 1s;
  94. }
  95. .star-1:nth-of-type(3):before {
  96. width: 12px;
  97. height: 12px;
  98. top: -250%;
  99. }
  100. .star-1:nth-of-type(4) {
  101. top: 72vh;
  102. left: 77vw;
  103. width: 9px;
  104. height: 3px;
  105. -webkit-animation-delay: 3s;
  106. animation-delay: 3s;
  107. }
  108. .star-1:nth-of-type(4):before {
  109. width: 18px;
  110. height: 18px;
  111. top: -250%;
  112. }
  113. .star-1:nth-of-type(5) {
  114. top: 14vh;
  115. left: 68vw;
  116. width: 9px;
  117. height: 3px;
  118. -webkit-animation-delay: 4s;
  119. animation-delay: 4s;
  120. }
  121. .star-1:nth-of-type(5):before {
  122. width: 18px;
  123. height: 18px;
  124. top: -250%;
  125. }
  126. .star-1:nth-of-type(6) {
  127. top: 26vh;
  128. left: 79vw;
  129. width: 6px;
  130. height: 2px;
  131. -webkit-animation-delay: 4s;
  132. animation-delay: 4s;
  133. }
  134. .star-1:nth-of-type(6):before {
  135. width: 12px;
  136. height: 12px;
  137. top: -250%;
  138. }
  139. .star-1:nth-of-type(7) {
  140. top: 28vh;
  141. left: 84vw;
  142. width: 9px;
  143. height: 3px;
  144. -webkit-animation-delay: 1s;
  145. animation-delay: 1s;
  146. }
  147. .star-1:nth-of-type(7):before {
  148. width: 18px;
  149. height: 18px;
  150. top: -250%;
  151. }
  152. .star-1:nth-of-type(8) {
  153. top: 42vh;
  154. left: 28vw;
  155. width: 4px;
  156. height: 1.3333333333px;
  157. -webkit-animation-delay: 3s;
  158. animation-delay: 3s;
  159. }
  160. .star-1:nth-of-type(8):before {
  161. width: 8px;
  162. height: 8px;
  163. top: -250%;
  164. }
  165. .star-1:nth-of-type(9) {
  166. top: 7vh;
  167. left: 99vw;
  168. width: 7px;
  169. height: 2.3333333333px;
  170. -webkit-animation-delay: 1s;
  171. animation-delay: 1s;
  172. }
  173. .star-1:nth-of-type(9):before {
  174. width: 14px;
  175. height: 14px;
  176. top: -250%;
  177. }
  178. .star-1:nth-of-type(10) {
  179. top: 97vh;
  180. left: 76vw;
  181. width: 4px;
  182. height: 1.3333333333px;
  183. -webkit-animation-delay: 2s;
  184. animation-delay: 2s;
  185. }
  186. .star-1:nth-of-type(10):before {
  187. width: 8px;
  188. height: 8px;
  189. top: -250%;
  190. }
  191. .star-1:nth-of-type(11) {
  192. top: 76vh;
  193. left: 89vw;
  194. width: 9px;
  195. height: 3px;
  196. -webkit-animation-delay: 4s;
  197. animation-delay: 4s;
  198. }
  199. .star-1:nth-of-type(11):before {
  200. width: 18px;
  201. height: 18px;
  202. top: -250%;
  203. }
  204. .star-1:nth-of-type(12) {
  205. top: 16vh;
  206. left: 92vw;
  207. width: 8px;
  208. height: 2.6666666667px;
  209. -webkit-animation-delay: 1s;
  210. animation-delay: 1s;
  211. }
  212. .star-1:nth-of-type(12):before {
  213. width: 16px;
  214. height: 16px;
  215. top: -250%;
  216. }
  217. .star-1:nth-of-type(13) {
  218. top: 78vh;
  219. left: 33vw;
  220. width: 6px;
  221. height: 2px;
  222. -webkit-animation-delay: 4s;
  223. animation-delay: 4s;
  224. }
  225. .star-1:nth-of-type(13):before {
  226. width: 12px;
  227. height: 12px;
  228. top: -250%;
  229. }
  230. .star-1:nth-of-type(14) {
  231. top: 12vh;
  232. left: 67vw;
  233. width: 7px;
  234. height: 2.3333333333px;
  235. -webkit-animation-delay: 5s;
  236. animation-delay: 5s;
  237. }
  238. .star-1:nth-of-type(14):before {
  239. width: 14px;
  240. height: 14px;
  241. top: -250%;
  242. }
  243. .star-1:nth-of-type(15) {
  244. top: 64vh;
  245. left: 51vw;
  246. width: 4px;
  247. height: 1.3333333333px;
  248. -webkit-animation-delay: 4s;
  249. animation-delay: 4s;
  250. }
  251. .star-1:nth-of-type(15):before {
  252. width: 8px;
  253. height: 8px;
  254. top: -250%;
  255. }
  256. .star-1:nth-of-type(16) {
  257. top: 71vh;
  258. left: 95vw;
  259. width: 4px;
  260. height: 1.3333333333px;
  261. -webkit-animation-delay: 4s;
  262. animation-delay: 4s;
  263. }
  264. .star-1:nth-of-type(16):before {
  265. width: 8px;
  266. height: 8px;
  267. top: -250%;
  268. }
  269. .star-1:nth-of-type(17) {
  270. top: 56vh;
  271. left: 31vw;
  272. width: 7px;
  273. height: 2.3333333333px;
  274. -webkit-animation-delay: 2s;
  275. animation-delay: 2s;
  276. }
  277. .star-1:nth-of-type(17):before {
  278. width: 14px;
  279. height: 14px;
  280. top: -250%;
  281. }
  282. .star-1:nth-of-type(18) {
  283. top: 33vh;
  284. left: 80vw;
  285. width: 6px;
  286. height: 2px;
  287. -webkit-animation-delay: 5s;
  288. animation-delay: 5s;
  289. }
  290. .star-1:nth-of-type(18):before {
  291. width: 12px;
  292. height: 12px;
  293. top: -250%;
  294. }
  295. .star-1:nth-of-type(19) {
  296. top: 30vh;
  297. left: 14vw;
  298. width: 8px;
  299. height: 2.6666666667px;
  300. -webkit-animation-delay: 5s;
  301. animation-delay: 5s;
  302. }
  303. .star-1:nth-of-type(19):before {
  304. width: 16px;
  305. height: 16px;
  306. top: -250%;
  307. }
  308. .star-1:nth-of-type(20) {
  309. top: 53vh;
  310. left: 43vw;
  311. width: 6px;
  312. height: 2px;
  313. -webkit-animation-delay: 3s;
  314. animation-delay: 3s;
  315. }
  316. .star-1:nth-of-type(20):before {
  317. width: 12px;
  318. height: 12px;
  319. top: -250%;
  320. }
  321. .star-1:nth-of-type(21) {
  322. top: 32vh;
  323. left: 9vw;
  324. width: 7px;
  325. height: 2.3333333333px;
  326. -webkit-animation-delay: 2s;
  327. animation-delay: 2s;
  328. }
  329. .star-1:nth-of-type(21):before {
  330. width: 14px;
  331. height: 14px;
  332. top: -250%;
  333. }
  334. .star-1:nth-of-type(22) {
  335. top: 97vh;
  336. left: 9vw;
  337. width: 5px;
  338. height: 1.6666666667px;
  339. -webkit-animation-delay: 2s;
  340. animation-delay: 2s;
  341. }
  342. .star-1:nth-of-type(22):before {
  343. width: 10px;
  344. height: 10px;
  345. top: -250%;
  346. }
  347. .star-1:nth-of-type(23) {
  348. top: 62vh;
  349. left: 6vw;
  350. width: 5px;
  351. height: 1.6666666667px;
  352. -webkit-animation-delay: 4s;
  353. animation-delay: 4s;
  354. }
  355. .star-1:nth-of-type(23):before {
  356. width: 10px;
  357. height: 10px;
  358. top: -250%;
  359. }
  360. .star-1:nth-of-type(24) {
  361. top: 57vh;
  362. left: 13vw;
  363. width: 9px;
  364. height: 3px;
  365. -webkit-animation-delay: 3s;
  366. animation-delay: 3s;
  367. }
  368. .star-1:nth-of-type(24):before {
  369. width: 18px;
  370. height: 18px;
  371. top: -250%;
  372. }
  373. .star-1:nth-of-type(25) {
  374. top: 52vh;
  375. left: 60vw;
  376. width: 4px;
  377. height: 1.3333333333px;
  378. -webkit-animation-delay: 5s;
  379. animation-delay: 5s;
  380. }
  381. .star-1:nth-of-type(25):before {
  382. width: 8px;
  383. height: 8px;
  384. top: -250%;
  385. }
  386. .star-1:nth-of-type(26) {
  387. top: 5vh;
  388. left: 84vw;
  389. width: 5px;
  390. height: 1.6666666667px;
  391. -webkit-animation-delay: 1s;
  392. animation-delay: 1s;
  393. }
  394. .star-1:nth-of-type(26):before {
  395. width: 10px;
  396. height: 10px;
  397. top: -250%;
  398. }
  399. .star-1:nth-of-type(27) {
  400. top: 26vh;
  401. left: 23vw;
  402. width: 8px;
  403. height: 2.6666666667px;
  404. -webkit-animation-delay: 5s;
  405. animation-delay: 5s;
  406. }
  407. .star-1:nth-of-type(27):before {
  408. width: 16px;
  409. height: 16px;
  410. top: -250%;
  411. }
  412. .star-1:nth-of-type(28) {
  413. top: 34vh;
  414. left: 3vw;
  415. width: 4px;
  416. height: 1.3333333333px;
  417. -webkit-animation-delay: 4s;
  418. animation-delay: 4s;
  419. }
  420. .star-1:nth-of-type(28):before {
  421. width: 8px;
  422. height: 8px;
  423. top: -250%;
  424. }
  425. .star-1:nth-of-type(29) {
  426. top: 40vh;
  427. left: 58vw;
  428. width: 6px;
  429. height: 2px;
  430. -webkit-animation-delay: 4s;
  431. animation-delay: 4s;
  432. }
  433. .star-1:nth-of-type(29):before {
  434. width: 12px;
  435. height: 12px;
  436. top: -250%;
  437. }
  438. .star-1:nth-of-type(30) {
  439. top: 17vh;
  440. left: 55vw;
  441. width: 5px;
  442. height: 1.6666666667px;
  443. -webkit-animation-delay: 5s;
  444. animation-delay: 5s;
  445. }
  446. .star-1:nth-of-type(30):before {
  447. width: 10px;
  448. height: 10px;
  449. top: -250%;
  450. }
  451. .star-2 {
  452. position: absolute;
  453. border-radius: 50%;
  454. background-color: #ffffff;
  455. -webkit-animation: twinkle 5s infinite ease-in-out;
  456. animation: twinkle 5s infinite ease-in-out;
  457. }
  458. .star-2:nth-of-type(31) {
  459. top: 70vh;
  460. left: 96vw;
  461. width: 2px;
  462. height: 2px;
  463. -webkit-animation-delay: 2s;
  464. animation-delay: 2s;
  465. }
  466. .star-2:nth-of-type(31):before {
  467. width: 4px;
  468. height: 4px;
  469. top: -250%;
  470. }
  471. .star-2:nth-of-type(32) {
  472. top: 88vh;
  473. left: 57vw;
  474. width: 3px;
  475. height: 3px;
  476. -webkit-animation-delay: 4s;
  477. animation-delay: 4s;
  478. }
  479. .star-2:nth-of-type(32):before {
  480. width: 6px;
  481. height: 6px;
  482. top: -250%;
  483. }
  484. .star-2:nth-of-type(33) {
  485. top: 59vh;
  486. left: 48vw;
  487. width: 3px;
  488. height: 3px;
  489. -webkit-animation-delay: 2s;
  490. animation-delay: 2s;
  491. }
  492. .star-2:nth-of-type(33):before {
  493. width: 6px;
  494. height: 6px;
  495. top: -250%;
  496. }
  497. .star-2:nth-of-type(34) {
  498. top: 2vh;
  499. left: 83vw;
  500. width: 2px;
  501. height: 2px;
  502. -webkit-animation-delay: 2s;
  503. animation-delay: 2s;
  504. }
  505. .star-2:nth-of-type(34):before {
  506. width: 4px;
  507. height: 4px;
  508. top: -250%;
  509. }
  510. .star-2:nth-of-type(35) {
  511. top: 8vh;
  512. left: 75vw;
  513. width: 4px;
  514. height: 4px;
  515. -webkit-animation-delay: 3s;
  516. animation-delay: 3s;
  517. }
  518. .star-2:nth-of-type(35):before {
  519. width: 8px;
  520. height: 8px;
  521. top: -250%;
  522. }
  523. .star-2:nth-of-type(36) {
  524. top: 78vh;
  525. left: 8vw;
  526. width: 3px;
  527. height: 3px;
  528. -webkit-animation-delay: 1s;
  529. animation-delay: 1s;
  530. }
  531. .star-2:nth-of-type(36):before {
  532. width: 6px;
  533. height: 6px;
  534. top: -250%;
  535. }
  536. .star-2:nth-of-type(37) {
  537. top: 72vh;
  538. left: 98vw;
  539. width: 2px;
  540. height: 2px;
  541. -webkit-animation-delay: 2s;
  542. animation-delay: 2s;
  543. }
  544. .star-2:nth-of-type(37):before {
  545. width: 4px;
  546. height: 4px;
  547. top: -250%;
  548. }
  549. .star-2:nth-of-type(38) {
  550. top: 34vh;
  551. left: 41vw;
  552. width: 3px;
  553. height: 3px;
  554. -webkit-animation-delay: 5s;
  555. animation-delay: 5s;
  556. }
  557. .star-2:nth-of-type(38):before {
  558. width: 6px;
  559. height: 6px;
  560. top: -250%;
  561. }
  562. .star-2:nth-of-type(39) {
  563. top: 13vh;
  564. left: 5vw;
  565. width: 4px;
  566. height: 4px;
  567. -webkit-animation-delay: 2s;
  568. animation-delay: 2s;
  569. }
  570. .star-2:nth-of-type(39):before {
  571. width: 8px;
  572. height: 8px;
  573. top: -250%;
  574. }
  575. .star-2:nth-of-type(40) {
  576. top: 5vh;
  577. left: 86vw;
  578. width: 2px;
  579. height: 2px;
  580. -webkit-animation-delay: 4s;
  581. animation-delay: 4s;
  582. }
  583. .star-2:nth-of-type(40):before {
  584. width: 4px;
  585. height: 4px;
  586. top: -250%;
  587. }
  588. .star-2:nth-of-type(41) {
  589. top: 7vh;
  590. left: 62vw;
  591. width: 3px;
  592. height: 3px;
  593. -webkit-animation-delay: 2s;
  594. animation-delay: 2s;
  595. }
  596. .star-2:nth-of-type(41):before {
  597. width: 6px;
  598. height: 6px;
  599. top: -250%;
  600. }
  601. .star-2:nth-of-type(42) {
  602. top: 36vh;
  603. left: 44vw;
  604. width: 2px;
  605. height: 2px;
  606. -webkit-animation-delay: 2s;
  607. animation-delay: 2s;
  608. }
  609. .star-2:nth-of-type(42):before {
  610. width: 4px;
  611. height: 4px;
  612. top: -250%;
  613. }
  614. .star-2:nth-of-type(43) {
  615. top: 74vh;
  616. left: 47vw;
  617. width: 3px;
  618. height: 3px;
  619. -webkit-animation-delay: 1s;
  620. animation-delay: 1s;
  621. }
  622. .star-2:nth-of-type(43):before {
  623. width: 6px;
  624. height: 6px;
  625. top: -250%;
  626. }
  627. .star-2:nth-of-type(44) {
  628. top: 72vh;
  629. left: 86vw;
  630. width: 2px;
  631. height: 2px;
  632. -webkit-animation-delay: 4s;
  633. animation-delay: 4s;
  634. }
  635. .star-2:nth-of-type(44):before {
  636. width: 4px;
  637. height: 4px;
  638. top: -250%;
  639. }
  640. .star-2:nth-of-type(45) {
  641. top: 26vh;
  642. left: 40vw;
  643. width: 4px;
  644. height: 4px;
  645. -webkit-animation-delay: 2s;
  646. animation-delay: 2s;
  647. }
  648. .star-2:nth-of-type(45):before {
  649. width: 8px;
  650. height: 8px;
  651. top: -250%;
  652. }
  653. .star-2:nth-of-type(46) {
  654. top: 41vh;
  655. left: 39vw;
  656. width: 3px;
  657. height: 3px;
  658. -webkit-animation-delay: 2s;
  659. animation-delay: 2s;
  660. }
  661. .star-2:nth-of-type(46):before {
  662. width: 6px;
  663. height: 6px;
  664. top: -250%;
  665. }
  666. .star-2:nth-of-type(47) {
  667. top: 16vh;
  668. left: 36vw;
  669. width: 4px;
  670. height: 4px;
  671. -webkit-animation-delay: 4s;
  672. animation-delay: 4s;
  673. }
  674. .star-2:nth-of-type(47):before {
  675. width: 8px;
  676. height: 8px;
  677. top: -250%;
  678. }
  679. .star-2:nth-of-type(48) {
  680. top: 96vh;
  681. left: 37vw;
  682. width: 4px;
  683. height: 4px;
  684. -webkit-animation-delay: 3s;
  685. animation-delay: 3s;
  686. }
  687. .star-2:nth-of-type(48):before {
  688. width: 8px;
  689. height: 8px;
  690. top: -250%;
  691. }
  692. .star-2:nth-of-type(49) {
  693. top: 18vh;
  694. left: 8vw;
  695. width: 4px;
  696. height: 4px;
  697. -webkit-animation-delay: 1s;
  698. animation-delay: 1s;
  699. }
  700. .star-2:nth-of-type(49):before {
  701. width: 8px;
  702. height: 8px;
  703. top: -250%;
  704. }
  705. .star-2:nth-of-type(50) {
  706. top: 56vh;
  707. left: 31vw;
  708. width: 4px;
  709. height: 4px;
  710. -webkit-animation-delay: 4s;
  711. animation-delay: 4s;
  712. }
  713. .star-2:nth-of-type(50):before {
  714. width: 8px;
  715. height: 8px;
  716. top: -250%;
  717. }
  718. .star-2:nth-of-type(51) {
  719. top: 24vh;
  720. left: 69vw;
  721. width: 3px;
  722. height: 3px;
  723. -webkit-animation-delay: 3s;
  724. animation-delay: 3s;
  725. }
  726. .star-2:nth-of-type(51):before {
  727. width: 6px;
  728. height: 6px;
  729. top: -250%;
  730. }
  731. .star-2:nth-of-type(52) {
  732. top: 52vh;
  733. left: 17vw;
  734. width: 3px;
  735. height: 3px;
  736. -webkit-animation-delay: 3s;
  737. animation-delay: 3s;
  738. }
  739. .star-2:nth-of-type(52):before {
  740. width: 6px;
  741. height: 6px;
  742. top: -250%;
  743. }
  744. .star-2:nth-of-type(53) {
  745. top: 35vh;
  746. left: 59vw;
  747. width: 2px;
  748. height: 2px;
  749. -webkit-animation-delay: 3s;
  750. animation-delay: 3s;
  751. }
  752. .star-2:nth-of-type(53):before {
  753. width: 4px;
  754. height: 4px;
  755. top: -250%;
  756. }
  757. .star-2:nth-of-type(54) {
  758. top: 46vh;
  759. left: 73vw;
  760. width: 4px;
  761. height: 4px;
  762. -webkit-animation-delay: 2s;
  763. animation-delay: 2s;
  764. }
  765. .star-2:nth-of-type(54):before {
  766. width: 8px;
  767. height: 8px;
  768. top: -250%;
  769. }
  770. .star-2:nth-of-type(55) {
  771. top: 38vh;
  772. left: 35vw;
  773. width: 4px;
  774. height: 4px;
  775. -webkit-animation-delay: 1s;
  776. animation-delay: 1s;
  777. }
  778. .star-2:nth-of-type(55):before {
  779. width: 8px;
  780. height: 8px;
  781. top: -250%;
  782. }
  783. .star-2:nth-of-type(56) {
  784. top: 34vh;
  785. left: 66vw;
  786. width: 3px;
  787. height: 3px;
  788. -webkit-animation-delay: 2s;
  789. animation-delay: 2s;
  790. }
  791. .star-2:nth-of-type(56):before {
  792. width: 6px;
  793. height: 6px;
  794. top: -250%;
  795. }
  796. .star-2:nth-of-type(57) {
  797. top: 80vh;
  798. left: 76vw;
  799. width: 3px;
  800. height: 3px;
  801. -webkit-animation-delay: 5s;
  802. animation-delay: 5s;
  803. }
  804. .star-2:nth-of-type(57):before {
  805. width: 6px;
  806. height: 6px;
  807. top: -250%;
  808. }
  809. .star-2:nth-of-type(58) {
  810. top: 45vh;
  811. left: 49vw;
  812. width: 2px;
  813. height: 2px;
  814. -webkit-animation-delay: 3s;
  815. animation-delay: 3s;
  816. }
  817. .star-2:nth-of-type(58):before {
  818. width: 4px;
  819. height: 4px;
  820. top: -250%;
  821. }
  822. .star-2:nth-of-type(59) {
  823. top: 8vh;
  824. left: 4vw;
  825. width: 4px;
  826. height: 4px;
  827. -webkit-animation-delay: 1s;
  828. animation-delay: 1s;
  829. }
  830. .star-2:nth-of-type(59):before {
  831. width: 8px;
  832. height: 8px;
  833. top: -250%;
  834. }
  835. .star-2:nth-of-type(60) {
  836. top: 71vh;
  837. left: 93vw;
  838. width: 2px;
  839. height: 2px;
  840. -webkit-animation-delay: 3s;
  841. animation-delay: 3s;
  842. }
  843. .star-2:nth-of-type(60):before {
  844. width: 4px;
  845. height: 4px;
  846. top: -250%;
  847. }
  848. .container-title {
  849. width: 600px;
  850. height: 450px;
  851. left: 50%;
  852. top: 50%;
  853. -webkit-transform: translate(-50%, -50%);
  854. transform: translate(-50%, -50%);
  855. position: absolute;
  856. color: white;
  857. line-height: 1;
  858. font-weight: 700;
  859. text-align: center;
  860. justify-content: center;
  861. align-items: center;
  862. flex-direction: column;
  863. display: flex;
  864. }
  865. .title > * {
  866. display: inline-block;
  867. font-size: 200px;
  868. }
  869. .number {
  870. text-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
  871. padding: 0 0.2em;
  872. font-family: 'Russo One', sans-serif;
  873. }
  874. .subtitle {
  875. font-size: 25px;
  876. margin-top: 1.5em;
  877. font-family: "Lato", sans-serif;
  878. text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  879. }
  880. button {
  881. font-size: 22px;
  882. margin-top: 1.5em;
  883. padding: 0.5em 1em;
  884. letter-spacing: 1px;
  885. font-family: "Lato", sans-serif;
  886. color: white;
  887. background-color: transparent;
  888. border: 0;
  889. cursor: pointer;
  890. z-index: 999;
  891. border: 2px solid white;
  892. border-radius: 5px;
  893. text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  894. transition: opacity 0.2s ease;
  895. }
  896. button:hover {
  897. opacity: 0.7;
  898. }
  899. button:focus {
  900. outline: 0;
  901. }
  902. .moon {
  903. position: relative;
  904. border-radius: 50%;
  905. width: 160px;
  906. height: 160px;
  907. z-index: 2;
  908. background-color: #fff;
  909. box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 100px #ff1177;
  910. -webkit-animation: rotate 5s ease-in-out infinite;
  911. animation: rotate 5s ease-in-out infinite;
  912. }
  913. .moon .face {
  914. top: 60%;
  915. left: 47%;
  916. position: absolute;
  917. }
  918. .moon .face .mouth {
  919. border-top-left-radius: 50%;
  920. border-bottom-right-radius: 50%;
  921. border-top-right-radius: 50%;
  922. background-color: #5c3191;
  923. width: 25px;
  924. height: 25px;
  925. position: absolute;
  926. -webkit-animation: snore 5s ease-in-out infinite;
  927. animation: snore 5s ease-in-out infinite;
  928. -webkit-transform: rotate(45deg);
  929. transform: rotate(45deg);
  930. box-shadow: inset -4px -4px 4px rgba(0, 0, 0, 0.3);
  931. }
  932. .moon .face .eyes {
  933. position: absolute;
  934. top: -30px;
  935. left: -30px;
  936. }
  937. .moon .face .eyes .eye-left,
  938. .moon .face .eyes .eye-right {
  939. border: 4px solid #5c3191;
  940. width: 30px;
  941. height: 15px;
  942. border-bottom-left-radius: 100px;
  943. border-bottom-right-radius: 100px;
  944. border-top: 0;
  945. position: absolute;
  946. }
  947. .moon .face .eyes .eye-left:before, .moon .face .eyes .eye-left:after,
  948. .moon .face .eyes .eye-right:before,
  949. .moon .face .eyes .eye-right:after {
  950. content: "";
  951. position: absolute;
  952. border-radius: 50%;
  953. width: 4px;
  954. height: 4px;
  955. background-color: #5c3191;
  956. top: -2px;
  957. left: -4px;
  958. }
  959. .moon .face .eyes .eye-left:after,
  960. .moon .face .eyes .eye-right:after {
  961. left: auto;
  962. right: -4px;
  963. }
  964. .moon .face .eyes .eye-right {
  965. left: 50px;
  966. }
  967. .container-bird {
  968. -webkit-perspective: 2000px;
  969. perspective: 2000px;
  970. width: 100%;
  971. height: 100%;
  972. position: absolute;
  973. top: 0;
  974. left: 0;
  975. bottom: 0;
  976. right: 0;
  977. }
  978. .bird {
  979. position: absolute;
  980. z-index: 1000;
  981. left: 50%;
  982. top: 50%;
  983. height: 40px;
  984. width: 50px;
  985. -webkit-transform: translate3d(-100vw, 0, 0) rotateY(90deg);
  986. transform: translate3d(-100vw, 0, 0) rotateY(90deg);
  987. -webkit-transform-style: preserve-3d;
  988. transform-style: preserve-3d;
  989. }
  990. .bird-container {
  991. left: 0;
  992. top: 0;
  993. width: 100%;
  994. height: 100%;
  995. -webkit-transform-style: preserve-3d;
  996. transform-style: preserve-3d;
  997. -webkit-transform: translate3d(50px, 30px, -300px);
  998. transform: translate3d(50px, 30px, -300px);
  999. }
  1000. .wing {
  1001. position: absolute;
  1002. left: 0;
  1003. top: 0;
  1004. right: 0;
  1005. bottom: 0;
  1006. border-radius: 3px;
  1007. -webkit-transform-style: preserve-3d;
  1008. transform-style: preserve-3d;
  1009. -webkit-transform-origin: center bottom;
  1010. transform-origin: center bottom;
  1011. z-index: 300;
  1012. }
  1013. .wing-left {
  1014. background: linear-gradient(to bottom, #a58dc4 0%, #7979a8 100%);
  1015. -webkit-transform: translate3d(0, 0, 0) rotateX(-30deg);
  1016. transform: translate3d(0, 0, 0) rotateX(-30deg);
  1017. -webkit-animation: wingLeft 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1018. animation: wingLeft 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1019. }
  1020. .wing-right {
  1021. background: linear-gradient(to bottom, #d9d3e2 0%, #b8a5d1 100%);
  1022. -webkit-transform: translate3d(0, 0, 0) rotateX(-30deg);
  1023. transform: translate3d(0, 0, 0) rotateX(-30deg);
  1024. -webkit-animation: wingRight 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1025. animation: wingRight 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1026. }
  1027. .wing-right-top,
  1028. .wing-left-top {
  1029. border-right: 25px solid transparent;
  1030. border-left: 25px solid transparent;
  1031. top: -20px;
  1032. width: 100%;
  1033. position: absolute;
  1034. -webkit-transform-origin: 100% 100%;
  1035. transform-origin: 100% 100%;
  1036. }
  1037. .wing-right-top {
  1038. border-bottom: 20px solid #b8a5d1;
  1039. -webkit-transform: translate3d(0, 0, 0) rotateX(60deg);
  1040. transform: translate3d(0, 0, 0) rotateX(60deg);
  1041. -webkit-animation: wingRightTop 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1042. animation: wingRightTop 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1043. }
  1044. .wing-left-top {
  1045. border-bottom: 20px solid #7979a8;
  1046. -webkit-transform: translate3d(0, 0, 0) rotateX(-60deg);
  1047. transform: translate3d(0, 0, 0) rotateX(-60deg);
  1048. -webkit-animation: wingLeftTop 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1049. animation: wingLeftTop 1.3s cubic-bezier(0.45, 0, 0.5, 0.95) infinite;
  1050. }
  1051. .bird-anim:nth-child(1) {
  1052. -webkit-animation: bird1 30s linear infinite forwards;
  1053. animation: bird1 30s linear infinite forwards;
  1054. }
  1055. .bird-anim:nth-child(2) {
  1056. -webkit-animation: bird2 30s linear infinite forwards;
  1057. animation: bird2 30s linear infinite forwards;
  1058. -webkit-animation-delay: 3s;
  1059. animation-delay: 3s;
  1060. z-index: -1;
  1061. }
  1062. .bird-anim:nth-child(3) {
  1063. -webkit-animation: bird3 30s linear infinite forwards;
  1064. animation: bird3 30s linear infinite forwards;
  1065. -webkit-animation-delay: 5s;
  1066. animation-delay: 5s;
  1067. }
  1068. .bird-anim:nth-child(4) {
  1069. -webkit-animation: bird4 30s linear infinite forwards;
  1070. animation: bird4 30s linear infinite forwards;
  1071. -webkit-animation-delay: 7s;
  1072. animation-delay: 7s;
  1073. }
  1074. .bird-anim:nth-child(5) {
  1075. -webkit-animation: bird5 30s linear infinite forwards;
  1076. animation: bird5 30s linear infinite forwards;
  1077. -webkit-animation-delay: 14s;
  1078. animation-delay: 14s;
  1079. }
  1080. .bird-anim:nth-child(6) {
  1081. -webkit-animation: bird6 30s linear infinite forwards;
  1082. animation: bird6 30s linear infinite forwards;
  1083. -webkit-animation-delay: 10s;
  1084. animation-delay: 10s;
  1085. z-index: -1;
  1086. }
  1087. @-webkit-keyframes rotate {
  1088. 0%, 100% {
  1089. -webkit-transform: rotate(-8deg);
  1090. transform: rotate(-8deg);
  1091. }
  1092. 50% {
  1093. -webkit-transform: rotate(0deg);
  1094. transform: rotate(0deg);
  1095. }
  1096. }
  1097. @keyframes rotate {
  1098. 0%, 100% {
  1099. -webkit-transform: rotate(-8deg);
  1100. transform: rotate(-8deg);
  1101. }
  1102. 50% {
  1103. -webkit-transform: rotate(0deg);
  1104. transform: rotate(0deg);
  1105. }
  1106. }
  1107. @-webkit-keyframes snore {
  1108. 0%, 100% {
  1109. -webkit-transform: scale(1) rotate(30deg);
  1110. transform: scale(1) rotate(30deg);
  1111. }
  1112. 50% {
  1113. -webkit-transform: scale(0.5) rotate(30deg);
  1114. transform: scale(0.5) rotate(30deg);
  1115. border-bottom-left-radius: 50%;
  1116. }
  1117. }
  1118. @keyframes snore {
  1119. 0%, 100% {
  1120. -webkit-transform: scale(1) rotate(30deg);
  1121. transform: scale(1) rotate(30deg);
  1122. }
  1123. 50% {
  1124. -webkit-transform: scale(0.5) rotate(30deg);
  1125. transform: scale(0.5) rotate(30deg);
  1126. border-bottom-left-radius: 50%;
  1127. }
  1128. }
  1129. @-webkit-keyframes twinkle {
  1130. 0%, 100% {
  1131. opacity: 0.7;
  1132. }
  1133. 50% {
  1134. opacity: 0.3;
  1135. }
  1136. }
  1137. @keyframes twinkle {
  1138. 0%, 100% {
  1139. opacity: 0.7;
  1140. }
  1141. 50% {
  1142. opacity: 0.3;
  1143. }
  1144. }
  1145. @-webkit-keyframes wingLeft {
  1146. 0%, 100% {
  1147. -webkit-transform: translate3d(0, 0, 0) rotateX(-50deg);
  1148. transform: translate3d(0, 0, 0) rotateX(-50deg);
  1149. }
  1150. 50% {
  1151. -webkit-transform: translate3d(0, -20px, 0) rotateX(-130deg);
  1152. transform: translate3d(0, -20px, 0) rotateX(-130deg);
  1153. background: linear-gradient(to bottom, #d9d3e2 0%, #b8a5d1 100%);
  1154. }
  1155. }
  1156. @keyframes wingLeft {
  1157. 0%, 100% {
  1158. -webkit-transform: translate3d(0, 0, 0) rotateX(-50deg);
  1159. transform: translate3d(0, 0, 0) rotateX(-50deg);
  1160. }
  1161. 50% {
  1162. -webkit-transform: translate3d(0, -20px, 0) rotateX(-130deg);
  1163. transform: translate3d(0, -20px, 0) rotateX(-130deg);
  1164. background: linear-gradient(to bottom, #d9d3e2 0%, #b8a5d1 100%);
  1165. }
  1166. }
  1167. @-webkit-keyframes wingLeftTop {
  1168. 0%, 100% {
  1169. -webkit-transform: translate3d(0, 0, 0) rotateX(-10deg);
  1170. transform: translate3d(0, 0, 0) rotateX(-10deg);
  1171. }
  1172. 50% {
  1173. -webkit-transform: translate3d(0px, 0px, 0) rotateX(-40deg);
  1174. transform: translate3d(0px, 0px, 0) rotateX(-40deg);
  1175. border-bottom: 20px solid #b8a5d1;
  1176. }
  1177. }
  1178. @keyframes wingLeftTop {
  1179. 0%, 100% {
  1180. -webkit-transform: translate3d(0, 0, 0) rotateX(-10deg);
  1181. transform: translate3d(0, 0, 0) rotateX(-10deg);
  1182. }
  1183. 50% {
  1184. -webkit-transform: translate3d(0px, 0px, 0) rotateX(-40deg);
  1185. transform: translate3d(0px, 0px, 0) rotateX(-40deg);
  1186. border-bottom: 20px solid #b8a5d1;
  1187. }
  1188. }
  1189. @-webkit-keyframes wingRight {
  1190. 0%, 100% {
  1191. -webkit-transform: translate3d(0, 0, 0) rotateX(50deg);
  1192. transform: translate3d(0, 0, 0) rotateX(50deg);
  1193. }
  1194. 50% {
  1195. -webkit-transform: translate3d(0, -20px, 0) rotateX(130deg);
  1196. transform: translate3d(0, -20px, 0) rotateX(130deg);
  1197. background: linear-gradient(to bottom, #a58dc4 0%, #7979a8 100%);
  1198. }
  1199. }
  1200. @keyframes wingRight {
  1201. 0%, 100% {
  1202. -webkit-transform: translate3d(0, 0, 0) rotateX(50deg);
  1203. transform: translate3d(0, 0, 0) rotateX(50deg);
  1204. }
  1205. 50% {
  1206. -webkit-transform: translate3d(0, -20px, 0) rotateX(130deg);
  1207. transform: translate3d(0, -20px, 0) rotateX(130deg);
  1208. background: linear-gradient(to bottom, #a58dc4 0%, #7979a8 100%);
  1209. }
  1210. }
  1211. @-webkit-keyframes wingRightTop {
  1212. 0%, 100% {
  1213. -webkit-transform: translate3d(0, 0, 0) rotateX(10deg);
  1214. transform: translate3d(0, 0, 0) rotateX(10deg);
  1215. }
  1216. 50% {
  1217. -webkit-transform: translate3d(0px, 0px, 0px) rotateX(40deg);
  1218. transform: translate3d(0px, 0px, 0px) rotateX(40deg);
  1219. border-bottom: 20px solid #7979a8;
  1220. }
  1221. }
  1222. @keyframes wingRightTop {
  1223. 0%, 100% {
  1224. -webkit-transform: translate3d(0, 0, 0) rotateX(10deg);
  1225. transform: translate3d(0, 0, 0) rotateX(10deg);
  1226. }
  1227. 50% {
  1228. -webkit-transform: translate3d(0px, 0px, 0px) rotateX(40deg);
  1229. transform: translate3d(0px, 0px, 0px) rotateX(40deg);
  1230. border-bottom: 20px solid #7979a8;
  1231. }
  1232. }
  1233. @-webkit-keyframes bird1 {
  1234. 0% {
  1235. -webkit-transform: translate3d(-120vw, -20px, -1000px) rotateY(-40deg) rotateX(0deg);
  1236. transform: translate3d(-120vw, -20px, -1000px) rotateY(-40deg) rotateX(0deg);
  1237. }
  1238. 100% {
  1239. -webkit-transform: translate3d(100vw, -40vh, 1000px) rotateY(-40deg) rotateX(0deg);
  1240. transform: translate3d(100vw, -40vh, 1000px) rotateY(-40deg) rotateX(0deg);
  1241. }
  1242. }
  1243. @keyframes bird1 {
  1244. 0% {
  1245. -webkit-transform: translate3d(-120vw, -20px, -1000px) rotateY(-40deg) rotateX(0deg);
  1246. transform: translate3d(-120vw, -20px, -1000px) rotateY(-40deg) rotateX(0deg);
  1247. }
  1248. 100% {
  1249. -webkit-transform: translate3d(100vw, -40vh, 1000px) rotateY(-40deg) rotateX(0deg);
  1250. transform: translate3d(100vw, -40vh, 1000px) rotateY(-40deg) rotateX(0deg);
  1251. }
  1252. }
  1253. @-webkit-keyframes bird2 {
  1254. 0%,
  1255. 15% {
  1256. -webkit-transform: translate3d(100vw, -300px, -1000px) rotateY(10deg) rotateX(0deg);
  1257. transform: translate3d(100vw, -300px, -1000px) rotateY(10deg) rotateX(0deg);
  1258. }
  1259. 100% {
  1260. -webkit-transform: translate3d(-100vw, -20px, -1000px) rotateY(10deg) rotateX(0deg);
  1261. transform: translate3d(-100vw, -20px, -1000px) rotateY(10deg) rotateX(0deg);
  1262. }
  1263. }
  1264. @keyframes bird2 {
  1265. 0%,
  1266. 15% {
  1267. -webkit-transform: translate3d(100vw, -300px, -1000px) rotateY(10deg) rotateX(0deg);
  1268. transform: translate3d(100vw, -300px, -1000px) rotateY(10deg) rotateX(0deg);
  1269. }
  1270. 100% {
  1271. -webkit-transform: translate3d(-100vw, -20px, -1000px) rotateY(10deg) rotateX(0deg);
  1272. transform: translate3d(-100vw, -20px, -1000px) rotateY(10deg) rotateX(0deg);
  1273. }
  1274. }
  1275. @-webkit-keyframes bird3 {
  1276. 0% {
  1277. -webkit-transform: translate3d(100vw, -50vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1278. transform: translate3d(100vw, -50vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1279. }
  1280. 100% {
  1281. -webkit-transform: translate3d(-100vw, -10vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1282. transform: translate3d(-100vw, -10vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1283. }
  1284. }
  1285. @keyframes bird3 {
  1286. 0% {
  1287. -webkit-transform: translate3d(100vw, -50vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1288. transform: translate3d(100vw, -50vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1289. }
  1290. 100% {
  1291. -webkit-transform: translate3d(-100vw, -10vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1292. transform: translate3d(-100vw, -10vh, 100px) rotateY(-5deg) rotateX(-20deg);
  1293. }
  1294. }
  1295. @-webkit-keyframes bird4 {
  1296. 0% {
  1297. -webkit-transform: translate3d(100vw, 30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1298. transform: translate3d(100vw, 30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1299. }
  1300. 100% {
  1301. -webkit-transform: translate3d(-100vw, -30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1302. transform: translate3d(-100vw, -30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1303. }
  1304. }
  1305. @keyframes bird4 {
  1306. 0% {
  1307. -webkit-transform: translate3d(100vw, 30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1308. transform: translate3d(100vw, 30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1309. }
  1310. 100% {
  1311. -webkit-transform: translate3d(-100vw, -30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1312. transform: translate3d(-100vw, -30vh, 200px) rotateY(-5deg) rotateX(10deg);
  1313. }
  1314. }
  1315. @-webkit-keyframes bird5 {
  1316. 0%,
  1317. 5% {
  1318. -webkit-transform: translate3d(100vw, 30vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1319. transform: translate3d(100vw, 30vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1320. }
  1321. 100% {
  1322. -webkit-transform: translate3d(-100vw, 10vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1323. transform: translate3d(-100vw, 10vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1324. }
  1325. }
  1326. @keyframes bird5 {
  1327. 0%,
  1328. 5% {
  1329. -webkit-transform: translate3d(100vw, 30vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1330. transform: translate3d(100vw, 30vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1331. }
  1332. 100% {
  1333. -webkit-transform: translate3d(-100vw, 10vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1334. transform: translate3d(-100vw, 10vh, 400px) rotateY(-15deg) rotateX(-10deg);
  1335. }
  1336. }
  1337. @-webkit-keyframes bird6 {
  1338. 0%, 10% {
  1339. -webkit-transform: translate3d(-100vw, 20vh, -500px) rotateY(15deg) rotateX(10deg);
  1340. transform: translate3d(-100vw, 20vh, -500px) rotateY(15deg) rotateX(10deg);
  1341. }
  1342. 100% {
  1343. -webkit-transform: translate3d(100vw, 40vh, -800px) rotateY(5deg) rotateX(10deg);
  1344. transform: translate3d(100vw, 40vh, -800px) rotateY(5deg) rotateX(10deg);
  1345. }
  1346. }
  1347. @keyframes bird6 {
  1348. 0%, 10% {
  1349. -webkit-transform: translate3d(-100vw, 20vh, -500px) rotateY(15deg) rotateX(10deg);
  1350. transform: translate3d(-100vw, 20vh, -500px) rotateY(15deg) rotateX(10deg);
  1351. }
  1352. 100% {
  1353. -webkit-transform: translate3d(100vw, 40vh, -800px) rotateY(5deg) rotateX(10deg);
  1354. transform: translate3d(100vw, 40vh, -800px) rotateY(5deg) rotateX(10deg);
  1355. }
  1356. }
  1357. @media screen and (max-width: 580px) {
  1358. .container-404 {
  1359. width: 100%;
  1360. }
  1361. .number {
  1362. font-size: 100px;
  1363. }
  1364. .subtitle {
  1365. font-size: 20px;
  1366. padding: 0 1em;
  1367. }
  1368. .moon {
  1369. width: 100px;
  1370. height: 100px;
  1371. }
  1372. .face {
  1373. -webkit-transform: scale(0.7);
  1374. transform: scale(0.7);
  1375. }
  1376. }
  1377. </style>
  1378. </head>
  1379. <body>
  1380. <div class="container container-star">
  1381. <div class="star-1"></div>
  1382. <div class="star-1"></div>
  1383. <div class="star-1"></div>
  1384. <div class="star-1"></div>
  1385. <div class="star-1"></div>
  1386. <div class="star-1"></div>
  1387. <div class="star-1"></div>
  1388. <div class="star-1"></div>
  1389. <div class="star-1"></div>
  1390. <div class="star-1"></div>
  1391. <div class="star-1"></div>
  1392. <div class="star-1"></div>
  1393. <div class="star-1"></div>
  1394. <div class="star-1"></div>
  1395. <div class="star-1"></div>
  1396. <div class="star-1"></div>
  1397. <div class="star-1"></div>
  1398. <div class="star-1"></div>
  1399. <div class="star-1"></div>
  1400. <div class="star-1"></div>
  1401. <div class="star-1"></div>
  1402. <div class="star-1"></div>
  1403. <div class="star-1"></div>
  1404. <div class="star-1"></div>
  1405. <div class="star-1"></div>
  1406. <div class="star-1"></div>
  1407. <div class="star-1"></div>
  1408. <div class="star-1"></div>
  1409. <div class="star-1"></div>
  1410. <div class="star-1"></div>
  1411. <div class="star-2"></div>
  1412. <div class="star-2"></div>
  1413. <div class="star-2"></div>
  1414. <div class="star-2"></div>
  1415. <div class="star-2"></div>
  1416. <div class="star-2"></div>
  1417. <div class="star-2"></div>
  1418. <div class="star-2"></div>
  1419. <div class="star-2"></div>
  1420. <div class="star-2"></div>
  1421. <div class="star-2"></div>
  1422. <div class="star-2"></div>
  1423. <div class="star-2"></div>
  1424. <div class="star-2"></div>
  1425. <div class="star-2"></div>
  1426. <div class="star-2"></div>
  1427. <div class="star-2"></div>
  1428. <div class="star-2"></div>
  1429. <div class="star-2"></div>
  1430. <div class="star-2"></div>
  1431. <div class="star-2"></div>
  1432. <div class="star-2"></div>
  1433. <div class="star-2"></div>
  1434. <div class="star-2"></div>
  1435. <div class="star-2"></div>
  1436. <div class="star-2"></div>
  1437. <div class="star-2"></div>
  1438. <div class="star-2"></div>
  1439. <div class="star-2"></div>
  1440. <div class="star-2"></div>
  1441. </div>
  1442. <div class="container container-bird">
  1443. <div class="bird bird-anim">
  1444. <div class="bird-container">
  1445. <div class="wing wing-left">
  1446. <div class="wing-left-top"></div>
  1447. </div>
  1448. <div class="wing wing-right">
  1449. <div class="wing-right-top"></div>
  1450. </div>
  1451. </div>
  1452. </div>
  1453. <div class="bird bird-anim">
  1454. <div class="bird-container">
  1455. <div class="wing wing-left">
  1456. <div class="wing-left-top"></div>
  1457. </div>
  1458. <div class="wing wing-right">
  1459. <div class="wing-right-top"></div>
  1460. </div>
  1461. </div>
  1462. </div>
  1463. <div class="bird bird-anim">
  1464. <div class="bird-container">
  1465. <div class="wing wing-left">
  1466. <div class="wing-left-top"></div>
  1467. </div>
  1468. <div class="wing wing-right">
  1469. <div class="wing-right-top"></div>
  1470. </div>
  1471. </div>
  1472. </div>
  1473. <div class="bird bird-anim">
  1474. <div class="bird-container">
  1475. <div class="wing wing-left">
  1476. <div class="wing-left-top"></div>
  1477. </div>
  1478. <div class="wing wing-right">
  1479. <div class="wing-right-top"></div>
  1480. </div>
  1481. </div>
  1482. </div>
  1483. <div class="bird bird-anim">
  1484. <div class="bird-container">
  1485. <div class="wing wing-left">
  1486. <div class="wing-left-top"></div>
  1487. </div>
  1488. <div class="wing wing-right">
  1489. <div class="wing-right-top"></div>
  1490. </div>
  1491. </div>
  1492. </div>
  1493. <div class="bird bird-anim">
  1494. <div class="bird-container">
  1495. <div class="wing wing-left">
  1496. <div class="wing-left-top"></div>
  1497. </div>
  1498. <div class="wing wing-right">
  1499. <div class="wing-right-top"></div>
  1500. </div>
  1501. </div>
  1502. </div>
  1503. <div class="container-title">
  1504. <div class="title">
  1505. <div class="number">4</div>
  1506. <div class="moon">
  1507. <div class="face">
  1508. <div class="mouth"></div>
  1509. <div class="eyes">
  1510. <div class="eye-left"></div>
  1511. <div class="eye-right"></div>
  1512. </div>
  1513. </div>
  1514. </div>
  1515. <div class="number">4</div>
  1516. </div>
  1517. <div class="subtitle">哎呀。看来你拐错弯了。</div>
  1518. <a href="&#104;&#116;&#116;&#112;&#115;&#58;&#47;&#47;&#119;&#119;&#119;&#46;&#100;&#107;&#101;&#119;&#108;&#46;&#99;&#111;&#109;"><button>返回</button></a>
  1519. </div>
  1520. <div style="display:none">
  1521. <script type="text/javascript">
  1522. var t=10;
  1523. setInterval("refer()",500);
  1524. function refer(){
  1525. if(t==0){
  1526. location.href="&#104;&#116;&#116;&#112;&#115;&#58;&#47;&#47;&#119;&#119;&#119;&#46;&#100;&#107;&#101;&#119;&#108;&#46;&#99;&#111;&#109;";
  1527. }
  1528. document.getElementById('show').innerHTML=""+t+"";
  1529. t--;
  1530. }
  1531. </script>
  1532. <span id="show"></span>
  1533. </div>
  1534. </div>
  1535. </body>
  1536. </html>