css实现文字三维空间变换动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现文字三维空间变换动画效果代码

代码标签: 三维空间 变换 动画 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">


  <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&amp;display=swap'>
  
<style>
body {
  background: #BF3979;
  height: 100vh;
  overflow: hidden;
  display: flex;
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
  perspective: 600px;
  color: #fff;
}

div {
  transform-style: preserve-3d;
}

.camera.-y {
  -webkit-animation: rotateY 20000ms linear infinite;
          animation: rotateY 20000ms linear infinite;
}
.camera.-z {
  -webkit-animation: rotateZ 15000ms infinite alternate;
          animation: rotateZ 15000ms infinite alternate;
}

.move {
  -webkit-animation: move 12000ms infinite alternate;
          animation: move 12000ms infinite alternate;
}

.star:nth-child(1) {
  transform: translate3d(5.5px, 327.5px, -202.25px) rotateY(111deg);
}
.star:nth-child(1)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1278ms -1395ms infinite;
          animation: code 1278ms -1395ms infinite;
}
.star:nth-child(2) {
  transform: translate3d(-20.5px, 82.25px, 190px) rotateY(259deg);
}
.star:nth-child(2)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1661ms -982ms infinite;
          animation: code 1661ms -982ms infinite;
}
.star:nth-child(3) {
  transform: translate3d(69px, 35.25px, 48px) rotateY(21deg);
}
.star:nth-child(3)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1760ms -1588ms infinite;
          animation: code 1760ms -1588ms infinite;
}
.star:nth-child(4) {
  transform: translate3d(-167px, 63.75px, -89.5px) rotateY(50deg);
}
.star:nth-child(4)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1459ms -1707ms infinite;
          animation: code 1459ms -1707ms infinite;
}
.star:nth-child(5) {
  transform: translate3d(-93px, -94.5px, -171.25px) rotateY(249deg);
}
.star:nth-child(5)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1181ms -675ms infinite;
          animation: code 1181ms -675ms infinite;
}
.star:nth-child(6) {
  transform: translate3d(228.75px, -141.5px, 151.25px) rotateY(353deg);
}
.star:nth-child(6)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1611ms -36ms infinite;
          animation: code 1611ms -36ms infinite;
}
.star:nth-child(7) {
  transform: translate3d(-353.75px, 53.25px, 11px) rotateY(56deg);
}
.star:nth-child(7)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1289ms -1769ms infinite;
          animation: code 1289ms -1769ms infinite;
}
.star:nth-child(8) {
  transform: translate3d(-34px, 209.75px, 87px) rotateY(317deg);
}
.star:nth-child(8)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1188ms -1812ms infinite;
          animation: code 1188ms -1812ms infinite;
}
.star:nth-child(9) {
  transform: translate3d(-281.75px, -50.75px, -42.5px) rotateY(348deg);
}
.star:nth-child(9)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1521ms -1738ms infinite;
          animation: code 1521ms -1738ms infinite;
}
.star:nth-child(10) {
  transform: translate3d(-209.5px, 103.75px, -268.5px) rotateY(358deg);
}
.star:nth-child(10)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1859ms -1178ms infinite;
          animation: code 1859ms -1178ms infinite;
}
.star:nth-child(11) {
  transform: translate3d(-87.75px, -111.75px, 63.5px) rotateY(107deg);
}
.star:nth-child(11)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1301ms -1517ms infinite;
          animation: code 1301ms -1517ms infinite;
}
.star:nth-child(12) {
  transform: translate3d(-65.25px, 173.75px, -2px) rotateY(59deg);
}
.star:nth-child(12)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1176ms -1293ms infinite;
          animation: code 1176ms -1293ms infinite;
}
.star:nth-child(13) {
  transform: translate3d(51.25px, -12.25px, -172.5px) rotateY(290deg);
}
.star:nth-child(13)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1317ms -1999ms infinite;
          animation: code 1317ms -1999ms infinite;
}
.star:nth-child(14) {
  transform: translate3d(-21.25px, 49px, 48.75px) rotateY(340deg);
}
.star:nth-child(14)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1535ms -1061ms infinite;
          animation: code 1535ms -1061ms infinite;
}
.star:nth-child(15) {
  transform: translate3d(259.5px, -141.25px, 149px) rotateY(291deg);
}
.star:nth-child(15)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1944ms -1482ms infinite;
          animation: code 1944ms -1482ms infinite;
}
.star:nth-child(16) {
  transform: translate3d(49px, 188px, -36.5px) rotateY(354deg);
}
.star:nth-child(16)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1561ms -874ms infinite;
          animation: code 1561ms -874ms infinite;
}
.star:nth-child(17) {
  transform: translate3d(-121.75px, 132.75px, -161.25px) rotateY(60deg);
}
.star:nth-child(17)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1934ms -1557ms infinite;
          animation: code 1934ms -1557ms infinite;
}
.star:nth-child(18) {
  transform: translate3d(147.75px, 94.75px, 119.5px) rotateY(148deg);
}
.star:nth-child(18)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1232ms -1559ms infinite;
          animation: code 1232ms -1559ms infinite;
}
.star:nth-child(19) {
  transform: translate3d(-81px, -57.5px, -18.75px) rotateY(11deg);
}
.star:nth-child(19)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1151ms -1707ms infinite;
          animation: code 1151ms -1707ms infinite;
}
.star:nth-child(20) {
  transform: translate3d(-263.25px, 8.75px, -94.5px) rotateY(138deg);
}
.star:nth-child(20)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1458ms -1358ms infinite;
          animation: code 1458ms -1358ms infinite;
}
.star:nth-child(21) {
  transform: translate3d(-115px, -0.75px, -204.75px) rotateY(54deg);
}
.star:nth-child(21)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1132ms -421ms infinite;
          animation: code 1132ms -421ms infinite;
}
.star:nth-child(22) {
  transform: translate3d(124px, -260px, -142px) rotateY(15deg);
}
.star:nth-child(22)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1651ms -720ms infinite;
          animation: code 1651ms -720ms infinite;
}
.star:nth-child(23) {
  transform: translate3d(18.5px, -76.25px, -92.5px) rotateY(46deg);
}
.star:nth-child(23)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1047ms -151ms infinite;
          animation: code 1047ms -151ms infinite;
}
.star:nth-child(24) {
  transform: translate3d(-230.25px, 154px, 27px) rotateY(226deg);
}
.star:nth-child(24)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1873ms -1565ms infinite;
          animation: code 1873ms -1565ms infinite;
}
.star:nth-child(25) {
  transform: translate3d(212.25px, -139.5px, 16.5px) rotateY(285deg);
}
.star:nth-child(25)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1097ms -949ms infinite;
          animation: code 1097ms -949ms infinite;
}
.star:nth-child(26) {
  transform: translate3d(-115.75px, -28.5px, 2px) rotateY(47deg);
}
.star:nth-child(26)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1293ms -1002ms infinite;
          animation: code 1293ms -1002ms infinite;
}
.star:nth-child(27) {
  transform: translate3d(-176.25px, -88.75px, 54.25px) rotateY(256deg);
}
.star:nth-child(27)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1947ms -762ms infinite;
          animation: code 1947ms -762ms infinite;
}
.star:nth-child(28) {
  transform: translate3d(26.25px, -26.5px, -204.5px) rotateY(123deg);
}
.star:nth-child(28)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1048ms -773ms infinite;
          animation: code 1048ms -773ms infinite;
}
.star:nth-child(29) {
  transform: translate3d(101px, -33px, -172.75px) rotateY(99deg);
}
.star:nth-child(29)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1156ms -1277ms infinite;
          animation: code 1156ms -1277ms infinite;
}
.star:nth-child(30) {
  transform: translate3d(159px, -179px, -20.5px) rotateY(91deg);
}
.star:nth-child(30)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1135ms -1392ms infinite;
          animation: code 1135ms -1392ms infinite;
}
.star:nth-child(31) {
  transform: translate3d(-236.25px, -255.5px, 114.5px) rotateY(46deg);
}
.star:nth-child(31)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1071ms -1342ms infinite;
          animation: code 1071ms -1342ms infinite;
}
.star:nth-child(32) {
  transform: translate3d(77.25px, -58.25px, -353px) rotateY(19deg);
}
.star:nth-child(32)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1317ms -1424ms infinite;
          animation: code 1317ms -1424ms infinite;
}
.star:nth-child(33) {
  transform: translate3d(57.5px, -72.75px, 64.25px) rotateY(148deg);
}
.star:nth-child(33)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1748ms -862ms infinite;
          animation: code 1748ms -862ms infinite;
}
.star:nth-child(34) {
  transform: translate3d(53px, 60.25px, -70.25px) rotateY(121deg);
}
.star:nth-child(34)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1291ms -1595ms infinite;
          animation: code 1291ms -1595ms infinite;
}
.star:nth-child(35) {
  transform: translate3d(111px, 134.5px, 14.25px) rotateY(137deg);
}
.star:nth-child(35)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1827ms -1884ms infinite;
          animation: code 1827ms -1884ms infinite;
}
.star:nth-child(36) {
  transform: translate3d(-352.75px, 100px, -189.75px) rotateY(179deg);
}
.star:nth-child(36)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1362ms -47ms infinite;
          animation: code 1362ms -47ms infinite;
}
.star:nth-child(37) {
  transform: translate3d(20px, 143.75px, 97.75px) rotateY(76deg);
}
.star:nth-child(37)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1323ms -1888ms infinite;
          animation: code 1323ms -1888ms infinite;
}
.star:nth-child(38) {
  transform: translate3d(87.25px, -145.75px, 116.5px) rotateY(106deg);
}
.star:nth-child(38)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1338ms -1428ms infinite;
          animation: code 1338ms -1428ms infinite;
}
.star:nth-child(39) {
  transform: translate3d(-226.25px, -195.25px, -149.25px) rotateY(250deg);
}
.star:nth-child(39)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1666ms -251ms infinite;
          animation: code 1666ms -251ms infinite;
}
.star:nth-child(40) {
  transform: translate3d(-11.75px, -24.5px, -150px) rotateY(123deg);
}
.star:nth-child(40)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1847ms -1699ms infinite;
          animation: code 1847ms -1699ms infinite;
}
.star:nth-child(41) {
  transform: translate3d(162px, 65px, -87.25px) rotateY(229deg);
}
.star:nth-child(41)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1079ms -905ms infinite;
          animation: code 1079ms -905ms infinite;
}
.star:nth-child(42) {
  transform: translate3d(-20px, 132.25px, -50px) rotateY(89deg);
}
.star:nth-child(42)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1847ms -266ms infinite;
          animation: code 1847ms -266ms infinite;
}
.star:nth-child(43) {
  transform: translate3d(-31.75px, 147.75px, -28.5px) rotateY(236deg);
}
.star:nth-child(43)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1487ms -1868ms infinite;
          animation: code 1487ms -1868ms infinite;
}
.star:nth-child(44) {
  transform: translate3d(-56px, -105.75px, 218px) rotateY(217deg);
}
.star:nth-child(44)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1314ms -1969ms infinite;
          animation: code 1314ms -1969ms infinite;
}
.star:nth-child(45) {
  transform: translate3d(109.25px, -12.25px, 125.25px) rotateY(243deg);
}
.star:nth-child(45)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1062ms -229ms infinite;
          animation: code 1062ms -229ms infinite;
}
.star:nth-child(46) {
  transform: translate3d(154px, 218px, -114px) rotateY(298deg);
}
.star:nth-child(46)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1196ms -1357ms infinite;
          animation: code 1196ms -1357ms infinite;
}
.star:nth-child(47) {
  transform: translate3d(-40px, 6.25px, -158.25px) rotateY(200deg);
}
.star:nth-child(47)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1919ms -269ms infinite;
          animation: code 1919ms -269ms infinite;
}
.star:nth-child(48) {
  transform: translate3d(32.5px, 166px, 36.5px) rotateY(161deg);
}
.star:nth-child(48)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1897ms -663ms infinite;
          animation: code 1897ms -663ms infinite;
}
.star:nth-child(49) {
  transform: translate3d(134.25px, -189.5px, 216.25px) rotateY(317deg);
}
.star:nth-child(49)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1126ms -1436ms infinite;
          animation: code 1126ms -1436ms infinite;
}
.star:nth-child(50) {
  transform: translate3d(131.75px, 31.5px, 128px) rotateY(64deg);
}
.star:nth-child(50)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1035ms -1107ms infinite;
          animation: code 1035ms -1107ms infinite;
}
.star:nth-child(51) {
  transform: translate3d(-134.75px, 9.25px, -274px) rotateY(42deg);
}
.star:nth-child(51)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1265ms -627ms infinite;
          animation: code 1265ms -627ms infinite;
}
.star:nth-child(52) {
  transform: translate3d(183.25px, -295.75px, 47px) rotateY(305deg);
}
.star:nth-child(52)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1661ms -1818ms infinite;
          animation: code 1661ms -1818ms infinite;
}
.star:nth-child(53) {
  transform: translate3d(-19.25px, 98.75px, 79.5px) rotateY(275deg);
}
.star:nth-child(53)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1447ms -50ms infinite;
          animation: code 1447ms -50ms infinite;
}
.star:nth-child(54) {
  transform: translate3d(-39.5px, -82.5px, -107.5px) rotateY(289deg);
}
.star:nth-child(54)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1770ms -1936ms infinite;
          animation: code 1770ms -1936ms infinite;
}
.star:nth-child(55) {
  transform: translate3d(-172px, 13.5px, 86.5px) rotateY(135deg);
}
.star:nth-child(55)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1760ms -1074ms infinite;
          animation: code 1760ms -1074ms infinite;
}
.star:nth-child(56) {
  transform: translate3d(136.5px, 90.75px, -183px) rotateY(250deg);
}
.star:nth-child(56)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1156ms -495ms infinite;
          animation: code 1156ms -495ms infinite;
}
.star:nth-child(57) {
  transform: translate3d(-40.25px, -51.5px, 11.5px) rotateY(292deg);
}
.star:nth-child(57)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1464ms -217ms infinite;
          animation: code 1464ms -217ms infinite;
}
.star:nth-child(58) {
  transform: translate3d(-121px, -281px, -112.75px) rotateY(253deg);
}
.star:nth-child(58)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1936ms -1353ms infinite;
          animation: code 1936ms -1353ms infinite;
}
.star:nth-child(59) {
  transform: translate3d(-176.25px, 47px, 187.5px) rotateY(51deg);
}
.star:nth-child(59)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1144ms -418ms infinite;
          animation: code 1144ms -418ms infinite;
}
.star:nth-child(60) {
  transform: translate3d(41.25px, 51px, 178.75px) rotateY(65deg);
}
.star:nth-child(60)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1109ms -450ms infinite;
          animation: code 1109ms -450ms infinite;
}
.star:nth-child(61) {
  transform: translate3d(-103.5px, 155.5px, -12.75px) rotateY(237deg);
}
.star:nth-child(61)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1222ms -971ms infinite;
          animation: code 1222ms -971ms infinite;
}
.star:nth-child(62) {
  transform: translate3d(50.25px, -49px, 125.25px) rotateY(138deg);
}
.star:nth-child(62)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1587ms -216ms infinite;
          animation: code 1587ms -216ms infinite;
}
.star:nth-child(63) {
  transform: translate3d(-105.75px, -34.25px, 171.75px) rotateY(117deg);
}
.star:nth-child(63)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1144ms -1546ms infinite;
          animation: code 1144ms -1546ms infinite;
}
.star:nth-child(64) {
  transform: translate3d(-81.25px, -168.75px, -93.75px) rotateY(18deg);
}
.star:nth-child(64)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1398ms -543ms infinite;
          animation: code 1398ms -543ms infinite;
}
.star:nth-child(65) {
  transform: translate3d(-85.75px, -85.75px, 46px) rotateY(291deg);
}
.star:nth-child(65)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1464ms -947ms infinite;
          animation: code 1464ms -947ms infinite;
}
.star:nth-child(66) {
  transform: translate3d(-38px, -6.75px, -102.75px) rotateY(67deg);
}
.star:nth-child(66)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1681ms -876ms infinite;
          animation: code 1681ms -876ms infinite;
}
.star:nth-child(67) {
  transform: translate3d(271px, 34.5px, -117px) rotateY(192deg);
}
.star:nth-child(67)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1309ms -312ms infinite;
          animation: code 1309ms -312ms infinite;
}
.star:nth-child(68) {
  transform: translate3d(165.25px, -184.75px, 223.25px) rotateY(90deg);
}
.star:nth-child(68)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1986ms -1308ms infinite;
          animation: code 1986ms -1308ms infinite;
}
.star:nth-child(69) {
  transform: translate3d(44.75px, 119.25px, -4.75px) rotateY(160deg);
}
.star:nth-child(69)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1193ms -1203ms infinite;
          animation: code 1193ms -1203ms infinite;
}
.star:nth-child(70) {
  transform: translate3d(122.75px, 65.75px, -0.75px) rotateY(94deg);
}
.star:nth-child(70)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1117ms -1297ms infinite;
          animation: code 1117ms -1297ms infinite;
}
.star:nth-child(71) {
  transform: translate3d(-286px, 16.25px, -78px) rotateY(223deg);
}
.star:nth-child(71)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1031ms -1390ms infinite;
          animation: code 1031ms -1390ms infinite;
}
.star:nth-child(72) {
  transform: translate3d(18.25px, -107px, 59.5px) rotateY(136deg);
}
.star:nth-child(72)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1129ms -328ms infinite;
          animation: code 1129ms -328ms infinite;
}
.star:nth-child(73) {
  transform: translate3d(227.75px, 3.25px, -62.25px) rotateY(11deg);
}
.star:nth-child(73)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1097ms -765ms infinite;
          animation: code 1097ms -765ms infinite;
}
.star:nth-child(74) {
  transform: translate3d(20px, 98px, 57px) rotateY(230deg);
}
.star:nth-child(74)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1279ms -1534ms infinite;
          animation: code 1279ms -1534ms infinite;
}
.star:nth-child(75) {
  transform: translate3d(28.75px, 205.5px, 337px) rotateY(309deg);
}
.star:nth-child(75)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1823ms -1479ms infinite;
          animation: code 1823ms -1479ms infinite;
}
.star:nth-child(76) {
  transform: translate3d(-257.75px, -186.25px, 251.75px) rotateY(322deg);
}
.star:nth-child(76)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1886ms -525ms infinite;
          animation: code 1886ms -525ms infinite;
}
.star:nth-child(77) {
  transform: translate3d(-97px, -115.25px, -106.75px) rotateY(246deg);
}
.star:nth-child(77)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1639ms -1655ms infinite;
          animation: code 1639ms -1655ms infinite;
}
.star:nth-child(78) {
  transform: translate3d(-62.75px, -5.25px, 26.5px) rotateY(181deg);
}
.star:nth-child(78)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1626ms -1312ms infinite;
          animation: code 1626ms -1312ms infinite;
}
.star:nth-child(79) {
  transform: translate3d(-64.25px, 46px, -41.5px) rotateY(55deg);
}
.star:nth-child(79)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1042ms -576ms infinite;
          animation: code 1042ms -576ms infinite;
}
.star:nth-child(80) {
  transform: translate3d(-159.75px, -56.5px, 206.25px) rotateY(27deg);
}
.star:nth-child(80)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1449ms -1917ms infinite;
          animation: code 1449ms -1917ms infinite;
}
.star:nth-child(81) {
  transform: translate3d(-127.25px, 22px, -69.5px) rotateY(263deg);
}
.star:nth-child(81)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1236ms -1603ms infinite;
          animation: code 1236ms -1603ms infinite;
}
.star:nth-child(82) {
  transform: translate3d(38.25px, -216px, 132.5px) rotateY(295deg);
}
.star:nth-child(82)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1718ms -1936ms infinite;
          animation: code 1718ms -1936ms infinite;
}
.star:nth-child(83) {
  transform: translate3d(50.75px, 67px, -231.5px) rotateY(37deg);
}
.star:nth-child(83)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1610ms -808ms infinite;
          animation: code 1610ms -808ms infinite;
}
.star:nth-child(84) {
  transform: translate3d(-195.25px, 156.5px, 109.25px) rotateY(321deg);
}
.star:nth-child(84)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1057ms -484ms infinite;
          animation: code 1057ms -484ms infinite;
}
.star:nth-child(85) {
  transform: translate3d(44.75px, -8.5px, -17.5px) rotateY(322deg);
}
.star:nth-child(85)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1639ms -118ms infinite;
          animation: code 1639ms -118ms infinite;
}
.star:nth-child(86) {
  transform: translate3d(9.5px, 105.5px, 137.75px) rotateY(228deg);
}
.star:nth-child(86)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1587ms -1357ms infinite;
          animation: code 1587ms -1357ms infinite;
}
.star:nth-child(87) {
  transform: translate3d(-80.75px, 115px, 4.25px) rotateY(99deg);
}
.star:nth-child(87)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1189ms -1106ms infinite;
          animation: code 1189ms -1106ms infinite;
}
.star:nth-child(88) {
  transform: translate3d(289px, -203.5px, 52.5px) rotateY(171deg);
}
.star:nth-child(88)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1831ms -1118ms infinite;
          animation: code 1831ms -1118ms infinite;
}
.star:nth-child(89) {
  transform: translate3d(-219px, 137.5px, 124.25px) rotateY(16deg);
}
.star:nth-child(89)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1212ms -1150ms infinite;
          animation: code 1212ms -1150ms infinite;
}
.star:nth-child(90) {
  transform: translate3d(-29.75px, 195.75px, 223.25px) rotateY(300deg);
}
.star:nth-child(90)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1377ms -1620ms infinite;
          animation: code 1377ms -1620ms infinite;
}
.star:nth-child(91) {
  transform: translate3d(38.25px, 15px, 345.25px) rotateY(320deg);
}
.star:nth-child(91)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1202ms -404ms infinite;
          animation: code 1202ms -404ms infinite;
}
.star:nth-child(92) {
  transform: translate3d(233.75px, -76.25px, -6.25px) rotateY(9deg);
}
.star:nth-child(92)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1484ms -1836ms infinite;
          animation: code 1484ms -1836ms infinite;
}
.star:nth-child(93) {
  transform: translate3d(46.75px, 4.75px, -2.25px) rotateY(18deg);
}
.star:nth-child(93)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1010ms -1339ms infinite;
          animation: code 1010ms -1339ms infinite;
}
.star:nth-child(94) {
  transform: translate3d(8.25px, -162px, -161.75px) rotateY(328deg);
}
.star:nth-child(94)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1072ms -1547ms infinite;
          animation: code 1072ms -1547ms infinite;
}
.star:nth-child(95) {
  transform: translate3d(252.75px, -36.5px, 15.75px) rotateY(204deg);
}
.star:nth-child(95)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1010ms -1184ms infinite;
          animation: code 1010ms -1184ms infinite;
}
.star:nth-child(96) {
  transform: translate3d(78.5px, -58.25px, 322.75px) rotateY(27deg);
}
.star:nth-child(96)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1995ms -1748ms infinite;
          animation: code 1995ms -1748ms infinite;
}
.star:nth-child(97) {
  transform: translate3d(126px, 21.5px, 292.25px) rotateY(323deg);
}
.star:nth-child(97)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1183ms -1270ms infinite;
          animation: code 1183ms -1270ms infinite;
}
.star:nth-child(98) {
  transform: translate3d(72.5px, 131.5px, 238.5px) rotateY(359deg);
}
.star:nth-child(98)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1291ms -1648ms infinite;
          animation: code 1291ms -1648ms infinite;
}
.star:nth-child(99) {
  transform: translate3d(79.5px, -37px, 29px) rotateY(336deg);
}
.star:nth-child(99)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1588ms -1464ms infinite;
          animation: code 1588ms -1464ms infinite;
}
.star:nth-child(100) {
  transform: translate3d(190.5px, -168.25px, -245.25px) rotateY(232deg);
}
.star:nth-child(100)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1731ms -472ms infinite;
          animation: code 1731ms -472ms infinite;
}
.star:nth-child(101) {
  transform: translate3d(46px, -187px, 24.5px) rotateY(141deg);
}
.star:nth-child(101)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1311ms -137ms infinite;
          animation: code 1311ms -137ms infinite;
}
.star:nth-child(102) {
  transform: translate3d(10.25px, -45.75px, 163.5px) rotateY(24deg);
}
.star:nth-child(102)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1848ms -1265ms infinite;
          animation: code 1848ms -1265ms infinite;
}
.star:nth-child(103) {
  transform: translate3d(63px, 56.5px, -19.5px) rotateY(270deg);
}
.star:nth-child(103)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1625ms -894ms infinite;
          animation: code 1625ms -894ms infinite;
}
.star:nth-child(104) {
  transform: translate3d(-115px, 111.25px, -79px) rotateY(74deg);
}
.star:nth-child(104)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1956ms -521ms infinite;
          animation: code 1956ms -521ms infinite;
}
.star:nth-child(105) {
  transform: translate3d(110.75px, -58.25px, 152.5px) rotateY(102deg);
}
.star:nth-child(105)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1316ms -1172ms infinite;
          animation: code 1316ms -1172ms infinite;
}
.star:nth-child(106) {
  transform: translate3d(-19.75px, 9.5px, 293.75px) rotateY(123deg);
}
.star:nth-child(106)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1456ms -740ms infinite;
          animation: code 1456ms -740ms infinite;
}
.star:nth-child(107) {
  transform: translate3d(-116px, -169.75px, 0px) rotateY(186deg);
}
.star:nth-child(107)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1621ms -465ms infinite;
          animation: code 1621ms -465ms infinite;
}
.star:nth-child(108) {
  transform: translate3d(-33.25px, -138.5px, -176.75px) rotateY(49deg);
}
.star:nth-child(108)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1430ms -1958ms infinite;
          animation: code 1430ms -1958ms infinite;
}
.star:nth-child(109) {
  transform: translate3d(119.75px, -36.5px, -122.25px) rotateY(243deg);
}
.star:nth-child(109)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1088ms -1015ms infinite;
          animation: code 1088ms -1015ms infinite;
}
.star:nth-child(110) {
  transform: translate3d(-92.25px, 34px, -194.75px) rotateY(235deg);
}
.star:nth-child(110)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1269ms -37ms infinite;
          animation: code 1269ms -37ms infinite;
}
.star:nth-child(111) {
  transform: translate3d(186.5px, -187.75px, 254.75px) rotateY(191deg);
}
.star:nth-child(111)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1941ms -222ms infinite;
          animation: code 1941ms -222ms infinite;
}
.star:nth-child(112) {
  transform: translate3d(-78px, -339px, -77.75px) rotateY(218deg);
}
.star:nth-child(112)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1656ms -968ms infinite;
          animation: code 1656ms -968ms infinite;
}
.star:nth-child(113) {
  transform: translate3d(-35px, -224.5px, -54px) rotateY(18deg);
}
.star:nth-child(113)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1934ms -1445ms infinite;
          animation: code 1934ms -1445ms infinite;
}
.star:nth-child(114) {
  transform: translate3d(33.5px, -71.5px, -38.75px) rotateY(174deg);
}
.star:nth-child(114)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1984ms -1275ms infinite;
          animation: code 1984ms -1275ms infinite;
}
.star:nth-child(115) {
  transform: translate3d(12.25px, 101px, 86.25px) rotateY(292deg);
}
.star:nth-child(115)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1558ms -1321ms infinite;
          animation: code 1558ms -1321ms infinite;
}
.star:nth-child(116) {
  transform: translate3d(-123.75px, -131.75px, 99.25px) rotateY(135deg);
}
.star:nth-child(116)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1024ms -242ms infinite;
          animation: code 1024ms -242ms infinite;
}
.star:nth-child(117) {
  transform: translate3d(135.75px, 225px, 191.5px) rotateY(160deg);
}
.star:nth-child(117)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1447ms -811ms infinite;
          animation: code 1447ms -811ms infinite;
}
.star:nth-child(118) {
  transform: translate3d(50.5px, -64.75px, 12.25px) rotateY(205deg);
}
.star:nth-child(118)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1867ms -468ms infinite;
          animation: code 1867ms -468ms infinite;
}
.star:nth-child(119) {
  transform: translate3d(-151.5px, 62px, -13.75px) rotateY(11deg);
}
.star:nth-child(119)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1905ms -53ms infinite;
          animation: code 1905ms -53ms infinite;
}
.star:nth-child(120) {
  transform: translate3d(-59px, 89.75px, -118.25px) rotateY(75deg);
}
.star:nth-child(120)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1172ms -580ms infinite;
          animation: code 1172ms -580ms infinite;
}
.star:nth-child(121) {
  transform: translate3d(108.25px, -3.25px, -173.25px) rotateY(157deg);
}
.star:nth-child(121)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1302ms -1221ms infinite;
          animation: code 1302ms -1221ms infinite;
}
.star:nth-child(122) {
  transform: translate3d(144.25px, -94.25px, 123px) rotateY(11deg);
}
.star:nth-child(122)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1521ms -1291ms infinite;
          animation: code 1521ms -1291ms infinite;
}
.star:nth-child(123) {
  transform: translate3d(-316px, -47.5px, -106.5px) rotateY(159deg);
}
.star:nth-child(123)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1209ms -1833ms infinite;
          animation: code 1209ms -1833ms infinite;
}
.star:nth-child(124) {
  transform: translate3d(-199.25px, 37px, 74px) rotateY(235deg);
}
.star:nth-child(124)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1847ms -784ms infinite;
          animation: code 1847ms -784ms infinite;
}
.star:nth-child(125) {
  transform: translate3d(-158.75px, -143.25px, 47px) rotateY(108deg);
}
.star:nth-child(125)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1739ms -829ms infinite;
          animation: code 1739ms -829ms infinite;
}
.star:nth-child(126) {
  transform: translate3d(-125px, 140.5px, 213.75px) rotateY(261deg);
}
.star:nth-child(126)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1992ms -1492ms infinite;
          animation: code 1992ms -1492ms infinite;
}
.star:nth-child(127) {
  transform: translate3d(156.25px, 137px, -82.25px) rotateY(245deg);
}
.star:nth-child(127)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1244ms -1141ms infinite;
          animation: code 1244ms -1141ms infinite;
}
.star:nth-child(128) {
  transform: translate3d(376px, -24.5px, 85px) rotateY(78deg);
}
.star:nth-child(128)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1565ms -1347ms infinite;
          animation: code 1565ms -1347ms infinite;
}
.star:nth-child(129) {
  transform: translate3d(178.25px, -67.75px, -67.5px) rotateY(63deg);
}
.star:nth-child(129)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1366ms -1637ms infinite;
          animation: code 1366ms -1637ms infinite;
}
.star:nth-child(130) {
  transform: translate3d(26.75px, 48.75px, 141px) rotateY(7deg);
}
.star:nth-child(130)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1299ms -1479ms infinite;
          animation: code 1299ms -1479ms infinite;
}
.star:nth-child(131) {
  transform: translate3d(-66.5px, -203.25px, 73.75px) rotateY(50deg);
}
.star:nth-child(131)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1612ms -1563ms infinite;
          animation: code 1612ms -1563ms infinite;
}
.star:nth-child(132) {
  transform: translate3d(-223.25px, 40px, 16.75px) rotateY(8deg);
}
.star:nth-child(132)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1741ms -376ms infinite;
          animation: code 1741ms -376ms infinite;
}
.star:nth-child(133) {
  transform: translate3d(194.75px, 26.75px, 65.75px) rotateY(317deg);
}
.star:nth-child(133)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1284ms -1004ms infinite;
          animation: code 1284ms -1004ms infinite;
}
.star:nth-child(134) {
  transform: translate3d(174px, 257.5px, -120.25px) rotateY(283deg);
}
.star:nth-child(134)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1256ms -1475ms infinite;
          animation: code 1256ms -1475ms infinite;
}
.star:nth-child(135) {
  transform: translate3d(-193.75px, 30.5px, 173px) rotateY(258deg);
}
.star:nth-child(135)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1561ms -498ms infinite;
          animation: code 1561ms -498ms infinite;
}
.star:nth-child(136) {
  transform: translate3d(-179px, 50.5px, 267.25px) rotateY(268deg);
}
.star:nth-child(136)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1964ms -336ms infinite;
          animation: code 1964ms -336ms infinite;
}
.star:nth-child(137) {
  transform: translate3d(153.25px, 126.75px, -113.25px) rotateY(152deg);
}
.star:nth-child(137)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1895ms -829ms infinite;
          animation: code 1895ms -829ms infinite;
}
.star:nth-child(138) {
  transform: translate3d(230.5px, 40.25px, -109.5px) rotateY(126deg);
}
.star:nth-child(138)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1613ms -1876ms infinite;
          animation: code 1613ms -1876ms infinite;
}
.star:nth-child(139) {
  transform: translate3d(95.25px, -85.75px, 223px) rotateY(1deg);
}
.star:nth-child(139)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1774ms -389ms infinite;
          animation: code 1774ms -389ms infinite;
}
.star:nth-child(140) {
  transform: translate3d(3.75px, 93.75px, -77.5px) rotateY(302deg);
}
.star:nth-child(140)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1698ms -439ms infinite;
          animation: code 1698ms -439ms infinite;
}
.star:nth-child(141) {
  transform: translate3d(-142.25px, -51.75px, 187px) rotateY(195deg);
}
.star:nth-child(141)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1851ms -1201ms infinite;
          animation: code 1851ms -1201ms infinite;
}
.star:nth-child(142) {
  transform: translate3d(37.25px, -19.5px, -71.5px) rotateY(351deg);
}
.star:nth-child(142)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1057ms -371ms infinite;
          animation: code 1057ms -371ms infinite;
}
.star:nth-child(143) {
  transform: translate3d(-199.75px, -0.25px, 157px) rotateY(99deg);
}
.star:nth-child(143)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1272ms -1099ms infinite;
          animation: code 1272ms -1099ms infinite;
}
.star:nth-child(144) {
  transform: translate3d(-3px, 53.5px, 61px) rotateY(196deg);
}
.star:nth-child(144)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1172ms -982ms infinite;
          animation: code 1172ms -982ms infinite;
}
.star:nth-child(145) {
  transform: translate3d(-199px, 68.25px, -50.75px) rotateY(131deg);
}
.star:nth-child(145)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1439ms -1038ms infinite;
          animation: code 1439ms -1038ms infinite;
}
.star:nth-child(146) {
  transform: translate3d(207.5px, -135.25px, 157px) rotateY(185deg);
}
.star:nth-child(146)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1860ms -1731ms infinite;
          animation: code 1860ms -1731ms infinite;
}
.star:nth-child(147) {
  transform: translate3d(134.25px, -76.25px, 64px) rotateY(229deg);
}
.star:nth-child(147)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1527ms -673ms infinite;
          animation: code 1527ms -673ms infinite;
}
.star:nth-child(148) {
  transform: translate3d(-233.5px, -121px, 23.5px) rotateY(106deg);
}
.star:nth-child(148)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1363ms -697ms infinite;
          animation: code 1363ms -697ms infinite;
}
.star:nth-child(149) {
  transform: translate3d(262px, -8.25px, 97px) rotateY(80deg);
}
.star:nth-child(149)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1126ms -1065ms infinite;
          animation: code 1126ms -1065ms infinite;
}
.star:nth-child(150) {
  transform: translate3d(72.75px, -308.25px, 118.75px) rotateY(94deg);
}
.star:nth-child(150)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1011ms -1802ms infinite;
          animation: code 1011ms -1802ms infinite;
}
.star:nth-child(151) {
  transform: translate3d(75.75px, -297.75px, -219.5px) rotateY(222deg);
}
.star:nth-child(151)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1669ms -939ms infinite;
          animation: code 1669ms -939ms infinite;
}
.star:nth-child(152) {
  transform: translate3d(-35.25px, -127.25px, 6.75px) rotateY(253deg);
}
.star:nth-child(152)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1830ms -1130ms infinite;
          animation: code 1830ms -1130ms infinite;
}
.star:nth-child(153) {
  transform: translate3d(-33.25px, -17.75px, -107.25px) rotateY(281deg);
}
.star:nth-child(153)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1001ms -1356ms infinite;
          animation: code 1001ms -1356ms infinite;
}
.star:nth-child(154) {
  transform: translate3d(151.75px, -332.25px, 82.5px) rotateY(57deg);
}
.star:nth-child(154)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1866ms -1939ms infinite;
          animation: code 1866ms -1939ms infinite;
}
.star:nth-child(155) {
  transform: translate3d(25.75px, -70.25px, 30.25px) rotateY(41deg);
}
.star:nth-child(155)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1296ms -49ms infinite;
          animation: code 1296ms -49ms infinite;
}
.star:nth-child(156) {
  transform: translate3d(103.25px, 110.75px, -39.25px) rotateY(16deg);
}
.star:nth-child(156)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1694ms -877ms infinite;
          animation: code 1694ms -877ms infinite;
}
.star:nth-child(157) {
  transform: translate3d(-351.5px, -147.75px, -104.75px) rotateY(342deg);
}
.star:nth-child(157)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1023ms -1196ms infinite;
          animation: code 1023ms -1196ms infinite;
}
.star:nth-child(158) {
  transform: translate3d(174.5px, -128.25px, -82px) rotateY(156deg);
}
.star:nth-child(158)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1700ms -97ms infinite;
          animation: code 1700ms -97ms infinite;
}
.star:nth-child(159) {
  transform: translate3d(-245.75px, 114.5px, 156px) rotateY(264deg);
}
.star:nth-child(159)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1382ms -1500ms infinite;
          animation: code 1382ms -1500ms infinite;
}
.star:nth-child(160) {
  transform: translate3d(-135px, 90.25px, 205.25px) rotateY(74deg);
}
.star:nth-child(160)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1946ms -970ms infinite;
          animation: code 1946ms -970ms infinite;
}
.star:nth-child(161) {
  transform: translate3d(4.5px, 146.5px, 63px) rotateY(124deg);
}
.star:nth-child(161)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1189ms -1055ms infinite;
          animation: code 1189ms -1055ms infinite;
}
.star:nth-child(162) {
  transform: translate3d(-25.75px, 109.75px, 164.5px) rotateY(72deg);
}
.star:nth-child(162)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1574ms -1370ms infinite;
          animation: code 1574ms -1370ms infinite;
}
.star:nth-child(163) {
  transform: translate3d(192px, -149.5px, 174px) rotateY(310deg);
}
.star:nth-child(163)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1033ms -157ms infinite;
          animation: code 1033ms -157ms infinite;
}
.star:nth-child(164) {
  transform: translate3d(-205.5px, -7.5px, 177px) rotateY(126deg);
}
.star:nth-child(164)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1911ms -1978ms infinite;
          animation: code 1911ms -1978ms infinite;
}
.star:nth-child(165) {
  transform: translate3d(217.5px, 32.25px, -16.75px) rotateY(168deg);
}
.star:nth-child(165)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1132ms -1675ms infinite;
          animation: code 1132ms -1675ms infinite;
}
.star:nth-child(166) {
  transform: translate3d(-71.5px, -72px, -118.5px) rotateY(318deg);
}
.star:nth-child(166)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1838ms -371ms infinite;
          animation: code 1838ms -371ms infinite;
}
.star:nth-child(167) {
  transform: translate3d(267.75px, 272px, -77.75px) rotateY(119deg);
}
.star:nth-child(167)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1633ms -1721ms infinite;
          animation: code 1633ms -1721ms infinite;
}
.star:nth-child(168) {
  transform: translate3d(200.5px, 43.75px, -46.75px) rotateY(112deg);
}
.star:nth-child(168)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1469ms -872ms infinite;
          animation: code 1469ms -872ms infinite;
}
.star:nth-child(169) {
  transform: translate3d(130.5px, 26.5px, -82px) rotateY(110deg);
}
.star:nth-child(169)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1022ms -515ms infinite;
          animation: code 1022ms -515ms infinite;
}
.star:nth-child(170) {
  transform: translate3d(176px, -301px, -169.5px) rotateY(216deg);
}
.star:nth-child(170)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1462ms -9ms infinite;
          animation: code 1462ms -9ms infinite;
}
.star:nth-child(171) {
  transform: translate3d(103.5px, -26px, -32px) rotateY(34deg);
}
.star:nth-child(171)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1703ms -476ms infinite;
          animation: code 1703ms -476ms infinite;
}
.star:nth-child(172) {
  transform: translate3d(65.75px, 2.75px, 57.5px) rotateY(339deg);
}
.star:nth-child(172)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1356ms -1214ms infinite;
          animation: code 1356ms -1214ms infinite;
}
.star:nth-child(173) {
  transform: translate3d(-140.25px, 74.75px, -130.25px) rotateY(78deg);
}
.star:nth-child(173)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1507ms -351ms infinite;
          animation: code 1507ms -351ms infinite;
}
.star:nth-child(174) {
  transform: translate3d(-307px, 152.75px, 44px) rotateY(211deg);
}
.star:nth-child(174)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1875ms -1691ms infinite;
          animation: code 1875ms -1691ms infinite;
}
.star:nth-child(175) {
  transform: translate3d(71.25px, -63.5px, -286px) rotateY(192deg);
}
.star:nth-child(175)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1006ms -1537ms infinite;
          animation: code 1006ms -1537ms infinite;
}
.star:nth-child(176) {
  transform: translate3d(5px, -15px, -170.25px) rotateY(114deg);
}
.star:nth-child(176)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1558ms -1373ms infinite;
          animation: code 1558ms -1373ms infinite;
}
.star:nth-child(177) {
  transform: translate3d(174.75px, 8px, 93.5px) rotateY(158deg);
}
.star:nth-child(177)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1181ms -243ms infinite;
          animation: code 1181ms -243ms infinite;
}
.star:nth-child(178) {
  transform: translate3d(79px, 101px, -148.75px) rotateY(358deg);
}
.star:nth-child(178)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1221ms -1548ms infinite;
          animation: code 1221ms -1548ms infinite;
}
.star:nth-child(179) {
  transform: translate3d(-177.25px, -248.5px, 293.75px) rotateY(66deg);
}
.star:nth-child(179)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1892ms -552ms infinite;
          animation: code 1892ms -552ms infinite;
}
.star:nth-child(180) {
  transform: translate3d(115.25px, -100.75px, -50px) rotateY(218deg);
}
.star:nth-child(180)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1576ms -789ms infinite;
          animation: code 1576ms -789ms infinite;
}
.star:nth-child(181) {
  transform: translate3d(0.5px, 108.25px, -88.25px) rotateY(91deg);
}
.star:nth-child(181)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1981ms -320ms infinite;
          animation: code 1981ms -320ms infinite;
}
.star:nth-child(182) {
  transform: translate3d(-32.25px, 204.25px, 31.5px) rotateY(42deg);
}
.star:nth-child(182)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1234ms -1138ms infinite;
          animation: code 1234ms -1138ms infinite;
}
.star:nth-child(183) {
  transform: translate3d(-115.75px, -269.5px, 99.25px) rotateY(205deg);
}
.star:nth-child(183)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1788ms -546ms infinite;
          animation: code 1788ms -546ms infinite;
}
.star:nth-child(184) {
  transform: translate3d(-126.75px, -123.25px, 338.25px) rotateY(89deg);
}
.star:nth-child(184)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1192ms -1522ms infinite;
          animation: code 1192ms -1522ms infinite;
}
.star:nth-child(185) {
  transform: translate3d(-98.25px, -52.75px, -118.25px) rotateY(123deg);
}
.star:nth-child(185)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1179ms -1127ms infinite;
          animation: code 1179ms -1127ms infinite;
}
.star:nth-child(186) {
  transform: translate3d(59.25px, -33px, -202.25px) rotateY(206deg);
}
.star:nth-child(186)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1313ms -542ms infinite;
          animation: code 1313ms -542ms infinite;
}
.star:nth-child(187) {
  transform: translate3d(-120px, 10.25px, -82.5px) rotateY(13deg);
}
.star:nth-child(187)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1487ms -937ms infinite;
          animation: code 1487ms -937ms infinite;
}
.star:nth-child(188) {
  transform: translate3d(-113px, 206.5px, 75.75px) rotateY(170deg);
}
.star:nth-child(188)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1571ms -1676ms infinite;
          animation: code 1571ms -1676ms infinite;
}
.star:nth-child(189) {
  transform: translate3d(175px, -243.5px, -73.25px) rotateY(86deg);
}
.star:nth-child(189)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1544ms -545ms infinite;
          animation: code 1544ms -545ms infinite;
}
.star:nth-child(190) {
  transform: translate3d(96.75px, -302px, 6.5px) rotateY(237deg);
}
.star:nth-child(190)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1234ms -292ms infinite;
          animation: code 1234ms -292ms infinite;
}
.star:nth-child(191) {
  transform: translate3d(-22.25px, -113.75px, -13.5px) rotateY(79deg);
}
.star:nth-child(191)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1454ms -466ms infinite;
          animation: code 1454ms -466ms infinite;
}
.star:nth-child(192) {
  transform: translate3d(114.5px, -14px, -108px) rotateY(70deg);
}
.star:nth-child(192)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1062ms -423ms infinite;
          animation: code 1062ms -423ms infinite;
}
.star:nth-child(193) {
  transform: translate3d(45.75px, -53.5px, 133.25px) rotateY(241deg);
}
.star:nth-child(193)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1857ms -422ms infinite;
          animation: code 1857ms -422ms infinite;
}
.star:nth-child(194) {
  transform: translate3d(-13.75px, -261.25px, -93px) rotateY(189deg);
}
.star:nth-child(194)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1240ms -1299ms infinite;
          animation: code 1240ms -1299ms infinite;
}
.star:nth-child(195) {
  transform: translate3d(-251.25px, 223.75px, 74px) rotateY(300deg);
}
.star:nth-child(195)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1223ms -311ms infinite;
          animation: code 1223ms -311ms infinite;
}
.star:nth-child(196) {
  transform: translate3d(130.75px, 214.5px, -109.25px) rotateY(55deg);
}
.star:nth-child(196)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1198ms -1720ms infinite;
          animation: code 1198ms -1720ms infinite;
}
.star:nth-child(197) {
  transform: translate3d(135.25px, -166.25px, -66.5px) rotateY(125deg);
}
.star:nth-child(197)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1047ms -1282ms infinite;
          animation: code 1047ms -1282ms infinite;
}
.star:nth-child(198) {
  transform: translate3d(116.25px, 456px, 90.5px) rotateY(325deg);
}
.star:nth-child(198)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1691ms -248ms infinite;
          animation: code 1691ms -248ms infinite;
}
.star:nth-child(199) {
  transform: translate3d(-41px, -133px, -260.5px) rotateY(60deg);
}
.star:nth-child(199)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1895ms -1871ms infinite;
          animation: code 1895ms -1871ms infinite;
}
.star:nth-child(200) {
  transform: translate3d(260.25px, -16px, -65px) rotateY(196deg);
}
.star:nth-child(200)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1612ms -1398ms infinite;
          animation: code 1612ms -1398ms infinite;
}
.star:nth-child(201) {
  transform: translate3d(195.5px, 199.75px, 184px) rotateY(181deg);
}
.star:nth-child(201)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1342ms -167ms infinite;
          animation: code 1342ms -167ms infinite;
}
.star:nth-child(202) {
  transform: translate3d(67.25px, -55px, 259.25px) rotateY(266deg);
}
.star:nth-child(202)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1527ms -1759ms infinite;
          animation: code 1527ms -1759ms infinite;
}
.star:nth-child(203) {
  transform: translate3d(136.5px, 64px, -170.25px) rotateY(93deg);
}
.star:nth-child(203)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1346ms -529ms infinite;
          animation: code 1346ms -529ms infinite;
}
.star:nth-child(204) {
  transform: translate3d(38px, 64.75px, -150.75px) rotateY(202deg);
}
.star:nth-child(204)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1091ms -800ms infinite;
          animation: code 1091ms -800ms infinite;
}
.star:nth-child(205) {
  transform: translate3d(94.75px, -171.5px, 265.25px) rotateY(327deg);
}
.star:nth-child(205)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1891ms -1282ms infinite;
          animation: code 1891ms -1282ms infinite;
}
.star:nth-child(206) {
  transform: translate3d(163.25px, 290.25px, -1.75px) rotateY(235deg);
}
.star:nth-child(206)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1965ms -995ms infinite;
          animation: code 1965ms -995ms infinite;
}
.star:nth-child(207) {
  transform: translate3d(204px, 167px, -95px) rotateY(93deg);
}
.star:nth-child(207)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1961ms -27ms infinite;
          animation: code 1961ms -27ms infinite;
}
.star:nth-child(208) {
  transform: translate3d(31.25px, -282.25px, 48px) rotateY(339deg);
}
.star:nth-child(208)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1927ms -1758ms infinite;
          animation: code 1927ms -1758ms infinite;
}
.star:nth-child(209) {
  transform: translate3d(87px, -144.25px, -76.75px) rotateY(44deg);
}
.star:nth-child(209)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1801ms -1487ms infinite;
          animation: code 1801ms -1487ms infinite;
}
.star:nth-child(210) {
  transform: translate3d(76px, -93.75px, 76px) rotateY(175deg);
}
.star:nth-child(210)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1624ms -994ms infinite;
          animation: code 1624ms -994ms infinite;
}
.star:nth-child(211) {
  transform: translate3d(10.25px, -35px, -191px) rotateY(353deg);
}
.star:nth-child(211)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1932ms -1613ms infinite;
          animation: code 1932ms -1613ms infinite;
}
.star:nth-child(212) {
  transform: translate3d(9.5px, -3px, 1.75px) rotateY(101deg);
}
.star:nth-child(212)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1008ms -1625ms infinite;
          animation: code 1008ms -1625ms infinite;
}
.star:nth-child(213) {
  transform: translate3d(-168.75px, 86.5px, -63.5px) rotateY(113deg);
}
.star:nth-child(213)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1829ms -1641ms infinite;
          animation: code 1829ms -1641ms infinite;
}
.star:nth-child(214) {
  transform: translate3d(98.5px, 40.5px, 109.5px) rotateY(277deg);
}
.star:nth-child(214)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1273ms -1464ms infinite;
          animation: code 1273ms -1464ms infinite;
}
.star:nth-child(215) {
  transform: translate3d(-6.5px, -8px, -107.75px) rotateY(317deg);
}
.star:nth-child(215)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1584ms -107ms infinite;
          animation: code 1584ms -107ms infinite;
}
.star:nth-child(216) {
  transform: translate3d(-203px, -136px, -55.25px) rotateY(122deg);
}
.star:nth-child(216)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1702ms -1823ms infinite;
          animation: code 1702ms -1823ms infinite;
}
.star:nth-child(217) {
  transform: translate3d(-155px, 23.5px, 22.75px) rotateY(327deg);
}
.star:nth-child(217)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1463ms -1441ms infinite;
          animation: code 1463ms -1441ms infinite;
}
.star:nth-child(218) {
  transform: translate3d(22.5px, -201.25px, 2.75px) rotateY(38deg);
}
.star:nth-child(218)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 2000ms -258ms infinite;
          animation: code 2000ms -258ms infinite;
}
.star:nth-child(219) {
  transform: translate3d(147px, 233px, 15px) rotateY(79deg);
}
.star:nth-child(219)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1754ms -1846ms infinite;
          animation: code 1754ms -1846ms infinite;
}
.star:nth-child(220) {
  transform: translate3d(-139.25px, -210.25px, 64.75px) rotateY(156deg);
}
.star:nth-child(220)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1847ms -422ms infinite;
          animation: code 1847ms -422ms infinite;
}
.star:nth-child(221) {
  transform: translate3d(30px, 38.75px, 135.5px) rotateY(134deg);
}
.star:nth-child(221)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1768ms -233ms infinite;
          animation: code 1768ms -233ms infinite;
}
.star:nth-child(222) {
  transform: translate3d(-198.5px, 93px, 87px) rotateY(253deg);
}
.star:nth-child(222)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1154ms -505ms infinite;
          animation: code 1154ms -505ms infinite;
}
.star:nth-child(223) {
  transform: translate3d(69.25px, 121px, -34px) rotateY(232deg);
}
.star:nth-child(223)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1664ms -1627ms infinite;
          animation: code 1664ms -1627ms infinite;
}
.star:nth-child(224) {
  transform: translate3d(-138.75px, 124px, 110.25px) rotateY(156deg);
}
.star:nth-child(224)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1111ms -408ms infinite;
          animation: code 1111ms -408ms infinite;
}
.star:nth-child(225) {
  transform: translate3d(-341.75px, 65px, -249.5px) rotateY(280deg);
}
.star:nth-child(225)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1433ms -67ms infinite;
          animation: code 1433ms -67ms infinite;
}
.star:nth-child(226) {
  transform: translate3d(-156px, -23px, -259px) rotateY(191deg);
}
.star:nth-child(226)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1457ms -264ms infinite;
          animation: code 1457ms -264ms infinite;
}
.star:nth-child(227) {
  transform: translate3d(197.5px, -76.5px, -216.25px) rotateY(124deg);
}
.star:nth-child(227)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1035ms -1366ms infinite;
          animation: code 1035ms -1366ms infinite;
}
.star:nth-child(228) {
  transform: translate3d(-67.25px, 87px, 28.5px) rotateY(359deg);
}
.star:nth-child(228)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1098ms -1007ms infinite;
          animation: code 1098ms -1007ms infinite;
}
.star:nth-child(229) {
  transform: translate3d(-14.25px, 199px, -37.25px) rotateY(127deg);
}
.star:nth-child(229)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1367ms -353ms infinite;
          animation: code 1367ms -353ms infinite;
}
.star:nth-child(230) {
  transform: translate3d(-76.5px, -124px, 155px) rotateY(147deg);
}
.star:nth-child(230)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1573ms -1098ms infinite;
          animation: code 1573ms -1098ms infinite;
}
.star:nth-child(231) {
  transform: translate3d(-118px, 186px, -168px) rotateY(29deg);
}
.star:nth-child(231)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1500ms -338ms infinite;
          animation: code 1500ms -338ms infinite;
}
.star:nth-child(232) {
  transform: translate3d(-78.25px, -106.25px, 21.5px) rotateY(287deg);
}
.star:nth-child(232)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1902ms -507ms infinite;
          animation: code 1902ms -507ms infinite;
}
.star:nth-child(233) {
  transform: translate3d(41.25px, 228.25px, -132.25px) rotateY(105deg);
}
.star:nth-child(233)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1009ms -1569ms infinite;
          animation: code 1009ms -1569ms infinite;
}
.star:nth-child(234) {
  transform: translate3d(2.25px, -132px, -28.5px) rotateY(154deg);
}
.star:nth-child(234)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1995ms -584ms infinite;
          animation: code 1995ms -584ms infinite;
}
.star:nth-child(235) {
  transform: translate3d(-139.75px, -122.75px, -11px) rotateY(39deg);
}
.star:nth-child(235)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1382ms -234ms infinite;
          animation: code 1382ms -234ms infinite;
}
.star:nth-child(236) {
  transform: translate3d(58px, 91.5px, -336.5px) rotateY(124deg);
}
.star:nth-child(236)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1375ms -1377ms infinite;
          animation: code 1375ms -1377ms infinite;
}
.star:nth-child(237) {
  transform: translate3d(140.75px, 10px, 175px) rotateY(17deg);
}
.star:nth-child(237)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1400ms -393ms infinite;
          animation: code 1400ms -393ms infinite;
}
.star:nth-child(238) {
  transform: translate3d(57.75px, 108.75px, 257px) rotateY(206deg);
}
.star:nth-child(238)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1401ms -55ms infinite;
          animation: code 1401ms -55ms infinite;
}
.star:nth-child(239) {
  transform: translate3d(-104.75px, 244.25px, 31.75px) rotateY(197deg);
}
.star:nth-child(239)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1311ms -1198ms infinite;
          animation: code 1311ms -1198ms infinite;
}
.star:nth-child(240) {
  transform: translate3d(-5.75px, -109.5px, -97.75px) rotateY(261deg);
}
.star:nth-child(240)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1427ms -293ms infinite;
          animation: code 1427ms -293ms infinite;
}
.star:nth-child(241) {
  transform: translate3d(-204px, 24.25px, -191.5px) rotateY(118deg);
}
.star:nth-child(241)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1252ms -1254ms infinite;
          animation: code 1252ms -1254ms infinite;
}
.star:nth-child(242) {
  transform: translate3d(-213.25px, -53px, -98px) rotateY(187deg);
}
.star:nth-child(242)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1910ms -247ms infinite;
          animation: code 1910ms -247ms infinite;
}
.star:nth-child(243) {
  transform: translate3d(87.75px, 146.5px, -74.75px) rotateY(37deg);
}
.star:nth-child(243)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1135ms -1873ms infinite;
          animation: code 1135ms -1873ms infinite;
}
.star:nth-child(244) {
  transform: translate3d(31.25px, -39.25px, 100.5px) rotateY(82deg);
}
.star:nth-child(244)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1022ms -1485ms infinite;
          animation: code 1022ms -1485ms infinite;
}
.star:nth-child(245) {
  transform: translate3d(31.5px, -136.5px, 151.75px) rotateY(125deg);
}
.star:nth-child(245)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1936ms -1017ms infinite;
          animation: code 1936ms -1017ms infinite;
}
.star:nth-child(246) {
  transform: translate3d(-6.25px, -52.5px, -97.5px) rotateY(28deg);
}
.star:nth-child(246)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1146ms -151ms infinite;
          animation: code 1146ms -151ms infinite;
}
.star:nth-child(247) {
  transform: translate3d(-111px, -151.25px, -36.5px) rotateY(213deg);
}
.star:nth-child(247)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1706ms -113ms infinite;
          animation: code 1706ms -113ms infinite;
}
.star:nth-child(248) {
  transform: translate3d(-206.25px, -55.75px, 159px) rotateY(323deg);
}
.star:nth-child(248)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1576ms -1329ms infinite;
          animation: code 1576ms -1329ms infinite;
}
.star:nth-child(249) {
  transform: translate3d(6.5px, 112.75px, -42.75px) rotateY(156deg);
}
.star:nth-child(249)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1139ms -349ms infinite;
          animation: code 1139ms -349ms infinite;
}
.star:nth-child(250) {
  transform: translate3d(-157.75px, -142px, -121.75px) rotateY(40deg);
}
.star:nth-child(250)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1629ms -1269ms infinite;
          animation: code 1629ms -1269ms infinite;
}
.star:nth-child(251) {
  transform: translate3d(74.5px, -163.25px, -166.5px) rotateY(254deg);
}
.star:nth-child(251)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1660ms -415ms infinite;
          animation: code 1660ms -415ms infinite;
}
.star:nth-child(252) {
  transform: translate3d(200.5px, 14px, -91.25px) rotateY(348deg);
}
.star:nth-child(252)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1277ms -1676ms infinite;
          animation: code 1277ms -1676ms infinite;
}
.star:nth-child(253) {
  transform: translate3d(74px, 62.25px, 40.25px) rotateY(341deg);
}
.star:nth-child(253)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1433ms -1683ms infinite;
          animation: code 1433ms -1683ms infinite;
}
.star:nth-child(254) {
  transform: translate3d(-134.5px, -67px, 218px) rotateY(19deg);
}
.star:nth-child(254)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1182ms -1842ms infinite;
          animation: code 1182ms -1842ms infinite;
}
.star:nth-child(255) {
  transform: translate3d(-14.75px, -105.5px, -70.25px) rotateY(105deg);
}
.star:nth-child(255)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1976ms -532ms infinite;
          animation: code 1976ms -532ms infinite;
}
.star:nth-child(256) {
  transform: translate3d(-128.5px, -74px, -151.25px) rotateY(272deg);
}
.star:nth-child(256)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1223ms -1132ms infinite;
          animation: code 1223ms -1132ms infinite;
}
.star:nth-child(257) {
  transform: translate3d(-29.25px, -189.25px, -50.5px) rotateY(348deg);
}
.star:nth-child(257)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1353ms -1183ms infinite;
          animation: code 1353ms -1183ms infinite;
}
.star:nth-child(258) {
  transform: translate3d(-17.75px, -164.5px, 57.25px) rotateY(29deg);
}
.star:nth-child(258)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1285ms -186ms infinite;
          animation: code 1285ms -186ms infinite;
}
.star:nth-child(259) {
  transform: translate3d(-68px, -164px, -100px) rotateY(74deg);
}
.star:nth-child(259)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1938ms -1764ms infinite;
          animation: code 1938ms -1764ms infinite;
}
.star:nth-child(260) {
  transform: translate3d(8.75px, 135.5px, 24px) rotateY(15deg);
}
.star:nth-child(260)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1746ms -665ms infinite;
          animation: code 1746ms -665ms infinite;
}
.star:nth-child(261) {
  transform: translate3d(90.5px, -90.75px, -62.75px) rotateY(263deg);
}
.star:nth-child(261)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1751ms -315ms infinite;
          animation: code 1751ms -315ms infinite;
}
.star:nth-child(262) {
  transform: translate3d(-83.25px, 266.25px, 77.5px) rotateY(329deg);
}
.star:nth-child(262)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1037ms -569ms infinite;
          animation: code 1037ms -569ms infinite;
}
.star:nth-child(263) {
  transform: translate3d(122.5px, 289.25px, 252.25px) rotateY(28deg);
}
.star:nth-child(263)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1166ms -20ms infinite;
          animation: code 1166ms -20ms infinite;
}
.star:nth-child(264) {
  transform: translate3d(-72.75px, 256.25px, -69px) rotateY(351deg);
}
.star:nth-child(264)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1422ms -1557ms infinite;
          animation: code 1422ms -1557ms infinite;
}
.star:nth-child(265) {
  transform: translate3d(210.5px, 3.75px, -11.5px) rotateY(172deg);
}
.star:nth-child(265)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1183ms -1624ms infinite;
          animation: code 1183ms -1624ms infinite;
}
.star:nth-child(266) {
  transform: translate3d(-58.5px, -234px, 218px) rotateY(311deg);
}
.star:nth-child(266)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1417ms -896ms infinite;
          animation: code 1417ms -896ms infinite;
}
.star:nth-child(267) {
  transform: translate3d(-29.25px, -129px, 171.75px) rotateY(275deg);
}
.star:nth-child(267)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1324ms -693ms infinite;
          animation: code 1324ms -693ms infinite;
}
.star:nth-child(268) {
  transform: translate3d(144.75px, 246.75px, -204.75px) rotateY(217deg);
}
.star:nth-child(268)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1391ms -1168ms infinite;
          animation: code 1391ms -1168ms infinite;
}
.star:nth-child(269) {
  transform: translate3d(-5px, 78px, 45.75px) rotateY(349deg);
}
.star:nth-child(269)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1132ms -1257ms infinite;
          animation: code 1132ms -1257ms infinite;
}
.star:nth-child(270) {
  transform: translate3d(153.5px, 24.5px, -1.75px) rotateY(41deg);
}
.star:nth-child(270)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1243ms -1505ms infinite;
          animation: code 1243ms -1505ms infinite;
}
.star:nth-child(271) {
  transform: translate3d(-150.5px, -59px, -46.25px) rotateY(100deg);
}
.star:nth-child(271)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1932ms -580ms infinite;
          animation: code 1932ms -580ms infinite;
}
.star:nth-child(272) {
  transform: translate3d(-64.75px, -249.25px, 105px) rotateY(47deg);
}
.star:nth-child(272)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1553ms -1384ms infinite;
          animation: code 1553ms -1384ms infinite;
}
.star:nth-child(273) {
  transform: translate3d(297.25px, 139.75px, -101.5px) rotateY(301deg);
}
.star:nth-child(273)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1991ms -575ms infinite;
          animation: code 1991ms -575ms infinite;
}
.star:nth-child(274) {
  transform: translate3d(154.25px, -65.75px, -172.75px) rotateY(45deg);
}
.star:nth-child(274)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1013ms -1278ms infinite;
          animation: code 1013ms -1278ms infinite;
}
.star:nth-child(275) {
  transform: translate3d(141.5px, 27px, -170.75px) rotateY(19deg);
}
.star:nth-child(275)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1494ms -792ms infinite;
          animation: code 1494ms -792ms infinite;
}
.star:nth-child(276) {
  transform: translate3d(285.25px, -25.25px, 127.5px) rotateY(78deg);
}
.star:nth-child(276)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1361ms -1817ms infinite;
          animation: code 1361ms -1817ms infinite;
}
.star:nth-child(277) {
  transform: translate3d(-91.75px, -182.75px, -71.25px) rotateY(52deg);
}
.star:nth-child(277)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1525ms -908ms infinite;
          animation: code 1525ms -908ms infinite;
}
.star:nth-child(278) {
  transform: translate3d(112.75px, -62.25px, 254.25px) rotateY(40deg);
}
.star:nth-child(278)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1326ms -1474ms infinite;
          animation: code 1326ms -1474ms infinite;
}
.star:nth-child(279) {
  transform: translate3d(82.25px, -75.25px, -26.25px) rotateY(265deg);
}
.star:nth-child(279)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1190ms -389ms infinite;
          animation: code 1190ms -389ms infinite;
}
.star:nth-child(280) {
  transform: translate3d(111px, 3.75px, -48.25px) rotateY(335deg);
}
.star:nth-child(280)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1869ms -223ms infinite;
          animation: code 1869ms -223ms infinite;
}
.star:nth-child(281) {
  transform: translate3d(-3.25px, 171.25px, 57.5px) rotateY(85deg);
}
.star:nth-child(281)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1336ms -1188ms infinite;
          animation: code 1336ms -1188ms infinite;
}
.star:nth-child(282) {
  transform: translate3d(-73.5px, 186.75px, 276.75px) rotateY(86deg);
}
.star:nth-child(282)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1545ms -1303ms infinite;
          animation: code 1545ms -1303ms infinite;
}
.star:nth-child(283) {
  transform: translate3d(-34.75px, -54px, 60px) rotateY(272deg);
}
.star:nth-child(283)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1570ms -1986ms infinite;
          animation: code 1570ms -1986ms infinite;
}
.star:nth-child(284) {
  transform: translate3d(97.75px, -169.25px, 3.75px) rotateY(33deg);
}
.star:nth-child(284)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1336ms -597ms infinite;
          animation: code 1336ms -597ms infinite;
}
.star:nth-child(285) {
  transform: translate3d(12.75px, 134.5px, 64.75px) rotateY(49deg);
}
.star:nth-child(285)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1735ms -154ms infinite;
          animation: code 1735ms -154ms infinite;
}
.star:nth-child(286) {
  transform: translate3d(178.25px, -285.5px, -163px) rotateY(120deg);
}
.star:nth-child(286)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1178ms -1901ms infinite;
          animation: code 1178ms -1901ms infinite;
}
.star:nth-child(287) {
  transform: translate3d(192.25px, 103.5px, -72px) rotateY(170deg);
}
.star:nth-child(287)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1142ms -1251ms infinite;
          animation: code 1142ms -1251ms infinite;
}
.star:nth-child(288) {
  transform: translate3d(48.75px, -14.5px, 212.75px) rotateY(325deg);
}
.star:nth-child(288)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1718ms -1016ms infinite;
          animation: code 1718ms -1016ms infinite;
}
.star:nth-child(289) {
  transform: translate3d(-149px, -285.75px, -88px) rotateY(194deg);
}
.star:nth-child(289)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1872ms -968ms infinite;
          animation: code 1872ms -968ms infinite;
}
.star:nth-child(290) {
  transform: translate3d(135.75px, -64px, 178px) rotateY(241deg);
}
.star:nth-child(290)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1836ms -1697ms infinite;
          animation: code 1836ms -1697ms infinite;
}
.star:nth-child(291) {
  transform: translate3d(-114.25px, -92.25px, -215px) rotateY(31deg);
}
.star:nth-child(291)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1460ms -919ms infinite;
          animation: code 1460ms -919ms infinite;
}
.star:nth-child(292) {
  transform: translate3d(-64px, -56.75px, 150.5px) rotateY(347deg);
}
.star:nth-child(292)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1272ms -710ms infinite;
          animation: code 1272ms -710ms infinite;
}
.star:nth-child(293) {
  transform: translate3d(16.75px, -60.75px, -76.5px) rotateY(116deg);
}
.star:nth-child(293)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1325ms -578ms infinite;
          animation: code 1325ms -578ms infinite;
}
.star:nth-child(294) {
  transform: translate3d(-113.25px, 114.25px, 131.75px) rotateY(250deg);
}
.star:nth-child(294)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1332ms -452ms infinite;
          animation: code 1332ms -452ms infinite;
}
.star:nth-child(295) {
  transform: translate3d(20.5px, -150.75px, 4.75px) rotateY(313deg);
}
.star:nth-child(295)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1855ms -654ms infinite;
          animation: code 1855ms -654ms infinite;
}
.star:nth-child(296) {
  transform: translate3d(-256.25px, 216.25px, -57.25px) rotateY(266deg);
}
.star:nth-child(296)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1828ms -1675ms infinite;
          animation: code 1828ms -1675ms infinite;
}
.star:nth-child(297) {
  transform: translate3d(-31.75px, 142.75px, -37px) rotateY(21deg);
}
.star:nth-child(297)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1525ms -57ms infinite;
          animation: code 1525ms -57ms infinite;
}
.star:nth-child(298) {
  transform: translate3d(200.75px, -96px, 325px) rotateY(179deg);
}
.star:nth-child(298)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1791ms -1507ms infinite;
          animation: code 1791ms -1507ms infinite;
}
.star:nth-child(299) {
  transform: translate3d(68.25px, -11px, 33.75px) rotateY(205deg);
}
.star:nth-child(299)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1229ms -1107ms infinite;
          animation: code 1229ms -1107ms infinite;
}
.star:nth-child(300) {
  transform: translate3d(-16.5px, -143.5px, -142.75px) rotateY(88deg);
}
.star:nth-child(300)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1180ms -1784ms infinite;
          animation: code 1180ms -1784ms infinite;
}
.star:nth-child(301) {
  transform: translate3d(-255.75px, -83.5px, -88px) rotateY(295deg);
}
.star:nth-child(301)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1905ms -103ms infinite;
          animation: code 1905ms -103ms infinite;
}
.star:nth-child(302) {
  transform: translate3d(276.5px, -197.25px, 242.25px) rotateY(288deg);
}
.star:nth-child(302)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1109ms -731ms infinite;
          animation: code 1109ms -731ms infinite;
}
.star:nth-child(303) {
  transform: translate3d(134.75px, -203.5px, 182px) rotateY(234deg);
}
.star:nth-child(303)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1559ms -1213ms infinite;
          animation: code 1559ms -1213ms infinite;
}
.star:nth-child(304) {
  transform: translate3d(277.5px, -99.25px, 305px) rotateY(36deg);
}
.star:nth-child(304)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1915ms -1110ms infinite;
          animation: code 1915ms -1110ms infinite;
}
.star:nth-child(305) {
  transform: translate3d(-220px, -96.75px, -46px) rotateY(209deg);
}
.star:nth-child(305)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1126ms -238ms infinite;
          animation: code 1126ms -238ms infinite;
}
.star:nth-child(306) {
  transform: translate3d(9.5px, -214.25px, 169.75px) rotateY(53deg);
}
.star:nth-child(306)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1089ms -110ms infinite;
          animation: code 1089ms -110ms infinite;
}
.star:nth-child(307) {
  transform: translate3d(-197.75px, -65.75px, -72.25px) rotateY(318deg);
}
.star:nth-child(307)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1628ms -1525ms infinite;
          animation: code 1628ms -1525ms infinite;
}
.star:nth-child(308) {
  transform: translate3d(-25px, 195.25px, -102.5px) rotateY(17deg);
}
.star:nth-child(308)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1035ms -242ms infinite;
          animation: code 1035ms -242ms infinite;
}
.star:nth-child(309) {
  transform: translate3d(-233.25px, -385.25px, -152.5px) rotateY(32deg);
}
.star:nth-child(309)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1891ms -992ms infinite;
          animation: code 1891ms -992ms infinite;
}
.star:nth-child(310) {
  transform: translate3d(-111.5px, -169px, 54.25px) rotateY(318deg);
}
.star:nth-child(310)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1809ms -269ms infinite;
          animation: code 1809ms -269ms infinite;
}
.star:nth-child(311) {
  transform: translate3d(-55.25px, -165.5px, -33.5px) rotateY(265deg);
}
.star:nth-child(311)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1913ms -126ms infinite;
          animation: code 1913ms -126ms infinite;
}
.star:nth-child(312) {
  transform: translate3d(-160.75px, 101.75px, 74.75px) rotateY(236deg);
}
.star:nth-child(312)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1160ms -751ms infinite;
          animation: code 1160ms -751ms infinite;
}
.star:nth-child(313) {
  transform: translate3d(280.5px, -64.25px, 93.75px) rotateY(250deg);
}
.star:nth-child(313)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1540ms -377ms infinite;
          animation: code 1540ms -377ms infinite;
}
.star:nth-child(314) {
  transform: translate3d(128.5px, -257.5px, -139px) rotateY(246deg);
}
.star:nth-child(314)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1866ms -1821ms infinite;
          animation: code 1866ms -1821ms infinite;
}
.star:nth-child(315) {
  transform: translate3d(-12px, -136px, 35.75px) rotateY(158deg);
}
.star:nth-child(315)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1185ms -1229ms infinite;
          animation: code 1185ms -1229ms infinite;
}
.star:nth-child(316) {
  transform: translate3d(-40.75px, 100.5px, -39.25px) rotateY(130deg);
}
.star:nth-child(316)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1700ms -1858ms infinite;
          animation: code 1700ms -1858ms infinite;
}
.star:nth-child(317) {
  transform: translate3d(-143px, 2.75px, 44px) rotateY(184deg);
}
.star:nth-child(317)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1822ms -1035ms infinite;
          animation: code 1822ms -1035ms infinite;
}
.star:nth-child(318) {
  transform: translate3d(-89px, -54.25px, -94.25px) rotateY(174deg);
}
.star:nth-child(318)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1506ms -1054ms infinite;
          animation: code 1506ms -1054ms infinite;
}
.star:nth-child(319) {
  transform: translate3d(-65.25px, -85.5px, 33.75px) rotateY(263deg);
}
.star:nth-child(319)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1681ms -1932ms infinite;
          animation: code 1681ms -1932ms infinite;
}
.star:nth-child(320) {
  transform: translate3d(-241.5px, 251px, 245.75px) rotateY(114deg);
}
.star:nth-child(320)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1951ms -341ms infinite;
          animation: code 1951ms -341ms infinite;
}
.star:nth-child(321) {
  transform: translate3d(142.25px, -277.25px, 11.5px) rotateY(296deg);
}
.star:nth-child(321)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1297ms -62ms infinite;
          animation: code 1297ms -62ms infinite;
}
.star:nth-child(322) {
  transform: translate3d(71.75px, 160.25px, -195.75px) rotateY(54deg);
}
.star:nth-child(322)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1697ms -586ms infinite;
          animation: code 1697ms -586ms infinite;
}
.star:nth-child(323) {
  transform: translate3d(3.25px, -59.75px, 44.25px) rotateY(165deg);
}
.star:nth-child(323)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1989ms -1196ms infinite;
          animation: code 1989ms -1196ms infinite;
}
.star:nth-child(324) {
  transform: translate3d(257.25px, 120.25px, -23.75px) rotateY(36deg);
}
.star:nth-child(324)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1425ms -990ms infinite;
          animation: code 1425ms -990ms infinite;
}
.star:nth-child(325) {
  transform: translate3d(-81px, -61px, 16.5px) rotateY(123deg);
}
.star:nth-child(325)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1970ms -1808ms infinite;
          animation: code 1970ms -1808ms infinite;
}
.star:nth-child(326) {
  transform: translate3d(-50.75px, -260.75px, 323.75px) rotateY(40deg);
}
.star:nth-child(326)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1508ms -1776ms infinite;
          animation: code 1508ms -1776ms infinite;
}
.star:nth-child(327) {
  transform: translate3d(98.75px, 382.5px, 82.75px) rotateY(227deg);
}
.star:nth-child(327)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1081ms -1898ms infinite;
          animation: code 1081ms -1898ms infinite;
}
.star:nth-child(328) {
  transform: translate3d(116.75px, 123.75px, 61px) rotateY(328deg);
}
.star:nth-child(328)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1559ms -827ms infinite;
          animation: code 1559ms -827ms infinite;
}
.star:nth-child(329) {
  transform: translate3d(-43.25px, -353.5px, 135.5px) rotateY(76deg);
}
.star:nth-child(329)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1262ms -1646ms infinite;
          animation: code 1262ms -1646ms infinite;
}
.star:nth-child(330) {
  transform: translate3d(308.25px, -49.25px, -27.25px) rotateY(243deg);
}
.star:nth-child(330)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1342ms -813ms infinite;
          animation: code 1342ms -813ms infinite;
}
.star:nth-child(331) {
  transform: translate3d(-97.75px, -74.25px, -70.25px) rotateY(222deg);
}
.star:nth-child(331)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1266ms -1634ms infinite;
          animation: code 1266ms -1634ms infinite;
}
.star:nth-child(332) {
  transform: translate3d(224.25px, -112px, 160.5px) rotateY(123deg);
}
.star:nth-child(332)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1001ms -586ms infinite;
          animation: code 1001ms -586ms infinite;
}
.star:nth-child(333) {
  transform: translate3d(151px, -200px, 211.75px) rotateY(345deg);
}
.star:nth-child(333)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1449ms -1126ms infinite;
          animation: code 1449ms -1126ms infinite;
}
.star:nth-child(334) {
  transform: translate3d(254.75px, -77.75px, -264.5px) rotateY(30deg);
}
.star:nth-child(334)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1037ms -1773ms infinite;
          animation: code 1037ms -1773ms infinite;
}
.star:nth-child(335) {
  transform: translate3d(-45px, 262.5px, 424px) rotateY(352deg);
}
.star:nth-child(335)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1036ms -371ms infinite;
          animation: code 1036ms -371ms infinite;
}
.star:nth-child(336) {
  transform: translate3d(88.75px, -85.5px, 72px) rotateY(81deg);
}
.star:nth-child(336)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1526ms -1141ms infinite;
          animation: code 1526ms -1141ms infinite;
}
.star:nth-child(337) {
  transform: translate3d(55.75px, 98.75px, -133.75px) rotateY(139deg);
}
.star:nth-child(337)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1403ms -1428ms infinite;
          animation: code 1403ms -1428ms infinite;
}
.star:nth-child(338) {
  transform: translate3d(418px, 96.25px, 175px) rotateY(79deg);
}
.star:nth-child(338)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1464ms -1810ms infinite;
          animation: code 1464ms -1810ms infinite;
}
.star:nth-child(339) {
  transform: translate3d(44.25px, 56.5px, 43px) rotateY(316deg);
}
.star:nth-child(339)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1577ms -792ms infinite;
          animation: code 1577ms -792ms infinite;
}
.star:nth-child(340) {
  transform: translate3d(-139px, -28.75px, -60.5px) rotateY(185deg);
}
.star:nth-child(340)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1813ms -1889ms infinite;
          animation: code 1813ms -1889ms infinite;
}
.star:nth-child(341) {
  transform: translate3d(335px, 116px, -50.75px) rotateY(229deg);
}
.star:nth-child(341)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1606ms -230ms infinite;
          animation: code 1606ms -230ms infinite;
}
.star:nth-child(342) {
  transform: translate3d(-12px, 33.5px, -61.5px) rotateY(153deg);
}
.star:nth-child(342)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1012ms -488ms infinite;
          animation: code 1012ms -488ms infinite;
}
.star:nth-child(343) {
  transform: translate3d(-273.75px, 25.75px, 112.25px) rotateY(213deg);
}
.star:nth-child(343)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1235ms -1748ms infinite;
          animation: code 1235ms -1748ms infinite;
}
.star:nth-child(344) {
  transform: translate3d(-84.25px, -63.75px, 156.5px) rotateY(320deg);
}
.star:nth-child(344)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1470ms -131ms infinite;
          animation: code 1470ms -131ms infinite;
}
.star:nth-child(345) {
  transform: translate3d(-112.75px, 93.5px, 55.25px) rotateY(327deg);
}
.star:nth-child(345)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1635ms -1208ms infinite;
          animation: code 1635ms -1208ms infinite;
}
.star:nth-child(346) {
  transform: translate3d(-214.5px, -43.75px, 20.25px) rotateY(21deg);
}
.star:nth-child(346)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1286ms -442ms infinite;
          animation: code 1286ms -442ms infinite;
}
.star:nth-child(347) {
  transform: translate3d(-167.75px, 132.75px, 21.5px) rotateY(307deg);
}
.star:nth-child(347)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1187ms -94ms infinite;
          animation: code 1187ms -94ms infinite;
}
.star:nth-child(348) {
  transform: translate3d(-20.75px, 19.5px, -121.25px) rotateY(293deg);
}
.star:nth-child(348)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1942ms -245ms infinite;
          animation: code 1942ms -245ms infinite;
}
.star:nth-child(349) {
  transform: translate3d(-40.5px, -56.5px, 2.75px) rotateY(174deg);
}
.star:nth-child(349)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1884ms -1952ms infinite;
          animation: code 1884ms -1952ms infinite;
}
.star:nth-child(350) {
  transform: translate3d(-6.5px, 197.25px, 7.25px) rotateY(126deg);
}
.star:nth-child(350)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1229ms -1233ms infinite;
          animation: code 1229ms -1233ms infinite;
}
.star:nth-child(351) {
  transform: translate3d(238.25px, -7.25px, 177.5px) rotateY(125deg);
}
.star:nth-child(351)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1825ms -389ms infinite;
          animation: code 1825ms -389ms infinite;
}
.star:nth-child(352) {
  transform: translate3d(247.5px, 30.5px, 179.25px) rotateY(59deg);
}
.star:nth-child(352)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1063ms -1023ms infinite;
          animation: code 1063ms -1023ms infinite;
}
.star:nth-child(353) {
  transform: translate3d(156.5px, 199.25px, -125px) rotateY(271deg);
}
.star:nth-child(353)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1447ms -1488ms infinite;
          animation: code 1447ms -1488ms infinite;
}
.star:nth-child(354) {
  transform: translate3d(-165.75px, 84px, -83.75px) rotateY(224deg);
}
.star:nth-child(354)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1692ms -1677ms infinite;
          animation: code 1692ms -1677ms infinite;
}
.star:nth-child(355) {
  transform: translate3d(-129.5px, 158px, 43.25px) rotateY(332deg);
}
.star:nth-child(355)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1226ms -184ms infinite;
          animation: code 1226ms -184ms infinite;
}
.star:nth-child(356) {
  transform: translate3d(23px, 17.75px, 142.5px) rotateY(329deg);
}
.star:nth-child(356)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1907ms -353ms infinite;
          animation: code 1907ms -353ms infinite;
}
.star:nth-child(357) {
  transform: translate3d(-223px, 267px, 246.25px) rotateY(152deg);
}
.star:nth-child(357)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1635ms -54ms infinite;
          animation: code 1635ms -54ms infinite;
}
.star:nth-child(358) {
  transform: translate3d(288.75px, 24.25px, -231.75px) rotateY(349deg);
}
.star:nth-child(358)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1165ms -991ms infinite;
          animation: code 1165ms -991ms infinite;
}
.star:nth-child(359) {
  transform: translate3d(78px, -30px, 122px) rotateY(259deg);
}
.star:nth-child(359)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1351ms -378ms infinite;
          animation: code 1351ms -378ms infinite;
}
.star:nth-child(360) {
  transform: translate3d(-58px, 66.75px, -109.25px) rotateY(129deg);
}
.star:nth-child(360)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1527ms -745ms infinite;
          animation: code 1527ms -745ms infinite;
}
.star:nth-child(361) {
  transform: translate3d(-38.75px, 178.75px, 36.25px) rotateY(22deg);
}
.star:nth-child(361)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1225ms -1151ms infinite;
          animation: code 1225ms -1151ms infinite;
}
.star:nth-child(362) {
  transform: translate3d(-202px, 139.25px, -206.25px) rotateY(16deg);
}
.star:nth-child(362)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1918ms -1767ms infinite;
          animation: code 1918ms -1767ms infinite;
}
.star:nth-child(363) {
  transform: translate3d(-87.25px, 151.75px, 41.75px) rotateY(198deg);
}
.star:nth-child(363)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1424ms -596ms infinite;
          animation: code 1424ms -596ms infinite;
}
.star:nth-child(364) {
  transform: translate3d(13.5px, -120.75px, 153px) rotateY(166deg);
}
.star:nth-child(364)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1705ms -1115ms infinite;
          animation: code 1705ms -1115ms infinite;
}
.star:nth-child(365) {
  transform: translate3d(-135px, -295.75px, 259.5px) rotateY(277deg);
}
.star:nth-child(365)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1758ms -1447ms infinite;
          animation: code 1758ms -1447ms infinite;
}
.star:nth-child(366) {
  transform: translate3d(52px, -41px, 126px) rotateY(16deg);
}
.star:nth-child(366)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1520ms -460ms infinite;
          animation: code 1520ms -460ms infinite;
}
.star:nth-child(367) {
  transform: translate3d(82px, 135px, 93px) rotateY(123deg);
}
.star:nth-child(367)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1746ms -1760ms infinite;
          animation: code 1746ms -1760ms infinite;
}
.star:nth-child(368) {
  transform: translate3d(53.5px, -341.75px, 133.75px) rotateY(142deg);
}
.star:nth-child(368)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1014ms -1379ms infinite;
          animation: code 1014ms -1379ms infinite;
}
.star:nth-child(369) {
  transform: translate3d(-16.75px, 102.5px, -144.25px) rotateY(244deg);
}
.star:nth-child(369)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1531ms -1178ms infinite;
          animation: code 1531ms -1178ms infinite;
}
.star:nth-child(370) {
  transform: translate3d(22.5px, 89.75px, -185.5px) rotateY(157deg);
}
.star:nth-child(370)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1636ms -1589ms infinite;
          animation: code 1636ms -1589ms infinite;
}
.star:nth-child(371) {
  transform: translate3d(-3.75px, 145.5px, 37px) rotateY(123deg);
}
.star:nth-child(371)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1656ms -973ms infinite;
          animation: code 1656ms -973ms infinite;
}
.star:nth-child(372) {
  transform: translate3d(-69px, 19.5px, -130.75px) rotateY(277deg);
}
.star:nth-child(372)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1399ms -842ms infinite;
          animation: code 1399ms -842ms infinite;
}
.star:nth-child(373) {
  transform: translate3d(-100px, 33.5px, 133.5px) rotateY(301deg);
}
.star:nth-child(373)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1229ms -446ms infinite;
          animation: code 1229ms -446ms infinite;
}
.star:nth-child(374) {
  transform: translate3d(201.5px, -0.5px, -301px) rotateY(195deg);
}
.star:nth-child(374)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1141ms -1684ms infinite;
          animation: code 1141ms -1684ms infinite;
}
.star:nth-child(375) {
  transform: translate3d(-181px, -70.75px, 122px) rotateY(62deg);
}
.star:nth-child(375)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1439ms -1452ms infinite;
          animation: code 1439ms -1452ms infinite;
}
.star:nth-child(376) {
  transform: translate3d(-407.75px, -163.5px, 80.75px) rotateY(187deg);
}
.star:nth-child(376)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1542ms -1407ms infinite;
          animation: code 1542ms -1407ms infinite;
}
.star:nth-child(377) {
  transform: translate3d(98px, 186.25px, 192.75px) rotateY(280deg);
}
.star:nth-child(377)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1175ms -329ms infinite;
          animation: code 1175ms -329ms infinite;
}
.star:nth-child(378) {
  transform: translate3d(-60.75px, -119.5px, 145px) rotateY(15deg);
}
.star:nth-child(378)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1965ms -1294ms infinite;
          animation: code 1965ms -1294ms infinite;
}
.star:nth-child(379) {
  transform: translate3d(-15.5px, 150.25px, -3.75px) rotateY(119deg);
}
.star:nth-child(379)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1621ms -206ms infinite;
          animation: code 1621ms -206ms infinite;
}
.star:nth-child(380) {
  transform: translate3d(31.25px, 112.5px, -103.25px) rotateY(93deg);
}
.star:nth-child(380)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1671ms -246ms infinite;
          animation: code 1671ms -246ms infinite;
}
.star:nth-child(381) {
  transform: translate3d(-34px, 56px, 53.25px) rotateY(83deg);
}
.star:nth-child(381)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1404ms -1568ms infinite;
          animation: code 1404ms -1568ms infinite;
}
.star:nth-child(382) {
  transform: translate3d(255.75px, 216.5px, -297.5px) rotateY(77deg);
}
.star:nth-child(382)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1931ms -1815ms infinite;
          animation: code 1931ms -1815ms infinite;
}
.star:nth-child(383) {
  transform: translate3d(132.75px, -175.5px, -121.75px) rotateY(60deg);
}
.star:nth-child(383)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1968ms -1404ms infinite;
          animation: code 1968ms -1404ms infinite;
}
.star:nth-child(384) {
  transform: translate3d(103px, 110px, -4.75px) rotateY(321deg);
}
.star:nth-child(384)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1765ms -1778ms infinite;
          animation: code 1765ms -1778ms infinite;
}
.star:nth-child(385) {
  transform: translate3d(-232.25px, 74.25px, -9px) rotateY(204deg);
}
.star:nth-child(385)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1279ms -713ms infinite;
          animation: code 1279ms -713ms infinite;
}
.star:nth-child(386) {
  transform: translate3d(-42.75px, -141px, -51.75px) rotateY(207deg);
}
.star:nth-child(386)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1481ms -1866ms infinite;
          animation: code 1481ms -1866ms infinite;
}
.star:nth-child(387) {
  transform: translate3d(-6.75px, 280.75px, -3px) rotateY(140deg);
}
.star:nth-child(387)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1976ms -415ms infinite;
          animation: code 1976ms -415ms infinite;
}
.star:nth-child(388) {
  transform: translate3d(-25.25px, -200.75px, -103.25px) rotateY(263deg);
}
.star:nth-child(388)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1151ms -587ms infinite;
          animation: code 1151ms -587ms infinite;
}
.star:nth-child(389) {
  transform: translate3d(-15.25px, 158.75px, 3.75px) rotateY(316deg);
}
.star:nth-child(389)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1397ms -842ms infinite;
          animation: code 1397ms -842ms infinite;
}
.star:nth-child(390) {
  transform: translate3d(-55.5px, 175.25px, -51.75px) rotateY(32deg);
}
.star:nth-child(390)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1589ms -1806ms infinite;
          animation: code 1589ms -1806ms infinite;
}
.star:nth-child(391) {
  transform: translate3d(64.75px, -372px, -118.75px) rotateY(150deg);
}
.star:nth-child(391)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1128ms -1396ms infinite;
          animation: code 1128ms -1396ms infinite;
}
.star:nth-child(392) {
  transform: translate3d(-99.75px, -205.25px, -41.25px) rotateY(127deg);
}
.star:nth-child(392)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1584ms -1261ms infinite;
          animation: code 1584ms -1261ms infinite;
}
.star:nth-child(393) {
  transform: translate3d(42.75px, 53.25px, -250.75px) rotateY(198deg);
}
.star:nth-child(393)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1469ms -1500ms infinite;
          animation: code 1469ms -1500ms infinite;
}
.star:nth-child(394) {
  transform: translate3d(-233.5px, -93px, 97.25px) rotateY(261deg);
}
.star:nth-child(394)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1680ms -265ms infinite;
          animation: code 1680ms -265ms infinite;
}
.star:nth-child(395) {
  transform: translate3d(-55.5px, -7.75px, 55.5px) rotateY(85deg);
}
.star:nth-child(395)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1759ms -321ms infinite;
          animation: code 1759ms -321ms infinite;
}
.star:nth-child(396) {
  transform: translate3d(5px, 116.25px, -15.75px) rotateY(91deg);
}
.star:nth-child(396)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1328ms -1575ms infinite;
          animation: code 1328ms -1575ms infinite;
}
.star:nth-child(397) {
  transform: translate3d(-71.25px, 75px, -43.75px) rotateY(232deg);
}
.star:nth-child(397)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1359ms -1672ms infinite;
          animation: code 1359ms -1672ms infinite;
}
.star:nth-child(398) {
  transform: translate3d(218.25px, 96.75px, -46px) rotateY(334deg);
}
.star:nth-child(398)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1306ms -281ms infinite;
          animation: code 1306ms -281ms infinite;
}
.star:nth-child(399) {
  transform: translate3d(-179.75px, 285.5px, 170.25px) rotateY(275deg);
}
.star:nth-child(399)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1988ms -1880ms infinite;
          animation: code 1988ms -1880ms infinite;
}
.star:nth-child(400) {
  transform: translate3d(17.5px, 9.5px, 142.75px) rotateY(54deg);
}
.star:nth-child(400)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1487ms -1114ms infinite;
          animation: code 1487ms -1114ms infinite;
}
.star:nth-child(401) {
  transform: translate3d(369.5px, -222px, 200px) rotateY(255deg);
}
.star:nth-child(401)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1871ms -1465ms infinite;
          animation: code 1871ms -1465ms infinite;
}
.star:nth-child(402) {
  transform: translate3d(-20px, 37px, -146px) rotateY(212deg);
}
.star:nth-child(402)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1738ms -326ms infinite;
          animation: code 1738ms -326ms infinite;
}
.star:nth-child(403) {
  transform: translate3d(196px, 128.5px, 155.75px) rotateY(133deg);
}
.star:nth-child(403)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1120ms -388ms infinite;
          animation: code 1120ms -388ms infinite;
}
.star:nth-child(404) {
  transform: translate3d(61.25px, -121px, -240.75px) rotateY(50deg);
}
.star:nth-child(404)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1282ms -646ms infinite;
          animation: code 1282ms -646ms infinite;
}
.star:nth-child(405) {
  transform: translate3d(-119.25px, 53.5px, 171px) rotateY(17deg);
}
.star:nth-child(405)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1113ms -871ms infinite;
          animation: code 1113ms -871ms infinite;
}
.star:nth-child(406) {
  transform: translate3d(135.25px, -103px, -297.5px) rotateY(252deg);
}
.star:nth-child(406)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1771ms -1018ms infinite;
          animation: code 1771ms -1018ms infinite;
}
.star:nth-child(407) {
  transform: translate3d(-266.25px, 238.75px, -291px) rotateY(57deg);
}
.star:nth-child(407)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1440ms -1114ms infinite;
          animation: code 1440ms -1114ms infinite;
}
.star:nth-child(408) {
  transform: translate3d(-147.5px, -180px, 64px) rotateY(204deg);
}
.star:nth-child(408)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1390ms -1389ms infinite;
          animation: code 1390ms -1389ms infinite;
}
.star:nth-child(409) {
  transform: translate3d(90.5px, 68px, -217px) rotateY(9deg);
}
.star:nth-child(409)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1479ms -1871ms infinite;
          animation: code 1479ms -1871ms infinite;
}
.star:nth-child(410) {
  transform: translate3d(-14.5px, -114.25px, -16px) rotateY(154deg);
}
.star:nth-child(410)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1513ms -508ms infinite;
          animation: code 1513ms -508ms infinite;
}
.star:nth-child(411) {
  transform: translate3d(87.25px, 171.5px, -10.25px) rotateY(279deg);
}
.star:nth-child(411)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1020ms -1806ms infinite;
          animation: code 1020ms -1806ms infinite;
}
.star:nth-child(412) {
  transform: translate3d(-67px, 23.25px, 40px) rotateY(56deg);
}
.star:nth-child(412)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1515ms -1921ms infinite;
          animation: code 1515ms -1921ms infinite;
}
.star:nth-child(413) {
  transform: translate3d(-110.75px, -111.75px, -55px) rotateY(303deg);
}
.star:nth-child(413)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1508ms -1036ms infinite;
          animation: code 1508ms -1036ms infinite;
}
.star:nth-child(414) {
  transform: translate3d(35.25px, 12px, -84.75px) rotateY(29deg);
}
.star:nth-child(414)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1183ms -601ms infinite;
          animation: code 1183ms -601ms infinite;
}
.star:nth-child(415) {
  transform: translate3d(134.25px, -176.75px, 35px) rotateY(61deg);
}
.star:nth-child(415)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1744ms -1838ms infinite;
          animation: code 1744ms -1838ms infinite;
}
.star:nth-child(416) {
  transform: translate3d(72.25px, 186.25px, 10.5px) rotateY(153deg);
}
.star:nth-child(416)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1576ms -1305ms infinite;
          animation: code 1576ms -1305ms infinite;
}
.star:nth-child(417) {
  transform: translate3d(-260.5px, 230.5px, -7.5px) rotateY(115deg);
}
.star:nth-child(417)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1711ms -1238ms infinite;
          animation: code 1711ms -1238ms infinite;
}
.star:nth-child(418) {
  transform: translate3d(175.75px, -78.75px, 11.5px) rotateY(7deg);
}
.star:nth-child(418)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1919ms -1713ms infinite;
          animation: code 1919ms -1713ms infinite;
}
.star:nth-child(419) {
  transform: translate3d(338.5px, 164px, -169.75px) rotateY(43deg);
}
.star:nth-child(419)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1833ms -1461ms infinite;
          animation: code 1833ms -1461ms infinite;
}
.star:nth-child(420) {
  transform: translate3d(-94.75px, 33px, -77.25px) rotateY(183deg);
}
.star:nth-child(420)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1635ms -1553ms infinite;
          animation: code 1635ms -1553ms infinite;
}
.star:nth-child(421) {
  transform: translate3d(-17.25px, -5.5px, 115.25px) rotateY(145deg);
}
.star:nth-child(421)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1877ms -1746ms infinite;
          animation: code 1877ms -1746ms infinite;
}
.star:nth-child(422) {
  transform: translate3d(64.75px, 256.5px, 148.5px) rotateY(300deg);
}
.star:nth-child(422)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1186ms -50ms infinite;
          animation: code 1186ms -50ms infinite;
}
.star:nth-child(423) {
  transform: translate3d(-2.5px, -17.75px, -115.5px) rotateY(15deg);
}
.star:nth-child(423)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1197ms -1655ms infinite;
          animation: code 1197ms -1655ms infinite;
}
.star:nth-child(424) {
  transform: translate3d(143.25px, 14.5px, -123px) rotateY(168deg);
}
.star:nth-child(424)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1794ms -987ms infinite;
          animation: code 1794ms -987ms infinite;
}
.star:nth-child(425) {
  transform: translate3d(-59.5px, 173.75px, -68.75px) rotateY(287deg);
}
.star:nth-child(425)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1481ms -1053ms infinite;
          animation: code 1481ms -1053ms infinite;
}
.star:nth-child(426) {
  transform: translate3d(154.75px, -232.5px, 118.75px) rotateY(190deg);
}
.star:nth-child(426)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1235ms -541ms infinite;
          animation: code 1235ms -541ms infinite;
}
.star:nth-child(427) {
  transform: translate3d(133.75px, -166.25px, -64px) rotateY(249deg);
}
.star:nth-child(427)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1365ms -505ms infinite;
          animation: code 1365ms -505ms infinite;
}
.star:nth-child(428) {
  transform: translate3d(241px, 81.25px, 63.75px) rotateY(345deg);
}
.star:nth-child(428)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1859ms -1590ms infinite;
          animation: code 1859ms -1590ms infinite;
}
.star:nth-child(429) {
  transform: translate3d(-126.75px, 23.25px, 174px) rotateY(253deg);
}
.star:nth-child(429)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 2000ms -22ms infinite;
          animation: code 2000ms -22ms infinite;
}
.star:nth-child(430) {
  transform: translate3d(-49.75px, 289.25px, 129px) rotateY(170deg);
}
.star:nth-child(430)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1752ms -312ms infinite;
          animation: code 1752ms -312ms infinite;
}
.star:nth-child(431) {
  transform: translate3d(-66.75px, -77px, -6.5px) rotateY(239deg);
}
.star:nth-child(431)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1708ms -829ms infinite;
          animation: code 1708ms -829ms infinite;
}
.star:nth-child(432) {
  transform: translate3d(-215px, 102.5px, 106.75px) rotateY(11deg);
}
.star:nth-child(432)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1878ms -715ms infinite;
          animation: code 1878ms -715ms infinite;
}
.star:nth-child(433) {
  transform: translate3d(-42px, 15.25px, 146.25px) rotateY(360deg);
}
.star:nth-child(433)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1807ms -293ms infinite;
          animation: code 1807ms -293ms infinite;
}
.star:nth-child(434) {
  transform: translate3d(179px, 193.75px, 26px) rotateY(267deg);
}
.star:nth-child(434)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1771ms -872ms infinite;
          animation: code 1771ms -872ms infinite;
}
.star:nth-child(435) {
  transform: translate3d(-50.5px, 88.75px, -119.25px) rotateY(189deg);
}
.star:nth-child(435)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1261ms -249ms infinite;
          animation: code 1261ms -249ms infinite;
}
.star:nth-child(436) {
  transform: translate3d(-77px, 94px, 1.75px) rotateY(34deg);
}
.star:nth-child(436)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1730ms -361ms infinite;
          animation: code 1730ms -361ms infinite;
}
.star:nth-child(437) {
  transform: translate3d(-238px, 1.25px, 81px) rotateY(150deg);
}
.star:nth-child(437)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1174ms -306ms infinite;
          animation: code 1174ms -306ms infinite;
}
.star:nth-child(438) {
  transform: translate3d(-9.25px, 268.5px, -10px) rotateY(106deg);
}
.star:nth-child(438)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1101ms -634ms infinite;
          animation: code 1101ms -634ms infinite;
}
.star:nth-child(439) {
  transform: translate3d(-90.5px, 124px, 218.5px) rotateY(187deg);
}
.star:nth-child(439)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1355ms -624ms infinite;
          animation: code 1355ms -624ms infinite;
}
.star:nth-child(440) {
  transform: translate3d(35.25px, 73.75px, 79.75px) rotateY(267deg);
}
.star:nth-child(440)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1731ms -697ms infinite;
          animation: code 1731ms -697ms infinite;
}
.star:nth-child(441) {
  transform: translate3d(296.25px, 25px, -79.75px) rotateY(329deg);
}
.star:nth-child(441)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1148ms -1940ms infinite;
          animation: code 1148ms -1940ms infinite;
}
.star:nth-child(442) {
  transform: translate3d(189.25px, 175px, -77.75px) rotateY(263deg);
}
.star:nth-child(442)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1506ms -770ms infinite;
          animation: code 1506ms -770ms infinite;
}
.star:nth-child(443) {
  transform: translate3d(4.25px, 175.5px, -288.25px) rotateY(49deg);
}
.star:nth-child(443)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1795ms -78ms infinite;
          animation: code 1795ms -78ms infinite;
}
.star:nth-child(444) {
  transform: translate3d(42.75px, 86px, -49.5px) rotateY(98deg);
}
.star:nth-child(444)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1550ms -1033ms infinite;
          animation: code 1550ms -1033ms infinite;
}
.star:nth-child(445) {
  transform: translate3d(-185.75px, -56.25px, -58.5px) rotateY(123deg);
}
.star:nth-child(445)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1254ms -198ms infinite;
          animation: code 1254ms -198ms infinite;
}
.star:nth-child(446) {
  transform: translate3d(137.75px, -154.75px, 88.25px) rotateY(346deg);
}
.star:nth-child(446)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1236ms -1568ms infinite;
          animation: code 1236ms -1568ms infinite;
}
.star:nth-child(447) {
  transform: translate3d(-226.75px, -28.75px, 229px) rotateY(5deg);
}
.star:nth-child(447)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1805ms -72ms infinite;
          animation: code 1805ms -72ms infinite;
}
.star:nth-child(448) {
  transform: translate3d(-62.75px, 249.5px, 109.75px) rotateY(335deg);
}
.star:nth-child(448)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1836ms -311ms infinite;
          animation: code 1836ms -311ms infinite;
}
.star:nth-child(449) {
  transform: translate3d(160.75px, -75.25px, -101.5px) rotateY(317deg);
}
.star:nth-child(449)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1181ms -639ms infinite;
          animation: code 1181ms -639ms infinite;
}
.star:nth-child(450) {
  transform: translate3d(125.75px, -196.5px, 384.75px) rotateY(357deg);
}
.star:nth-child(450)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1266ms -988ms infinite;
          animation: code 1266ms -988ms infinite;
}
.star:nth-child(451) {
  transform: translate3d(224px, 67px, -48.75px) rotateY(167deg);
}
.star:nth-child(451)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1950ms -1584ms infinite;
          animation: code 1950ms -1584ms infinite;
}
.star:nth-child(452) {
  transform: translate3d(203.75px, 108.75px, 218.25px) rotateY(73deg);
}
.star:nth-child(452)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1054ms -1471ms infinite;
          animation: code 1054ms -1471ms infinite;
}
.star:nth-child(453) {
  transform: translate3d(181px, -154.5px, 125.5px) rotateY(291deg);
}
.star:nth-child(453)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1248ms -207ms infinite;
          animation: code 1248ms -207ms infinite;
}
.star:nth-child(454) {
  transform: translate3d(-33px, -72px, -101.25px) rotateY(55deg);
}
.star:nth-child(454)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1417ms -616ms infinite;
          animation: code 1417ms -616ms infinite;
}
.star:nth-child(455) {
  transform: translate3d(-229.25px, 90px, -222.75px) rotateY(257deg);
}
.star:nth-child(455)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1556ms -634ms infinite;
          animation: code 1556ms -634ms infinite;
}
.star:nth-child(456) {
  transform: translate3d(32px, 126.75px, -101px) rotateY(254deg);
}
.star:nth-child(456)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1660ms -1221ms infinite;
          animation: code 1660ms -1221ms infinite;
}
.star:nth-child(457) {
  transform: translate3d(-153.75px, -127.25px, 1.25px) rotateY(37deg);
}
.star:nth-child(457)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1712ms -1819ms infinite;
          animation: code 1712ms -1819ms infinite;
}
.star:nth-child(458) {
  transform: translate3d(-45.5px, -18.5px, 160px) rotateY(203deg);
}
.star:nth-child(458)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1238ms -1764ms infinite;
          animation: code 1238ms -1764ms infinite;
}
.star:nth-child(459) {
  transform: translate3d(-249.5px, 44.5px, 124.75px) rotateY(119deg);
}
.star:nth-child(459)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1007ms -180ms infinite;
          animation: code 1007ms -180ms infinite;
}
.star:nth-child(460) {
  transform: translate3d(4px, 17.25px, 104px) rotateY(95deg);
}
.star:nth-child(460)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1442ms -1893ms infinite;
          animation: code 1442ms -1893ms infinite;
}
.star:nth-child(461) {
  transform: translate3d(-105.5px, 150.25px, -124.25px) rotateY(331deg);
}
.star:nth-child(461)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1775ms -1556ms infinite;
          animation: code 1775ms -1556ms infinite;
}
.star:nth-child(462) {
  transform: translate3d(184.25px, -35.5px, -5.5px) rotateY(140deg);
}
.star:nth-child(462)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1402ms -1485ms infinite;
          animation: code 1402ms -1485ms infinite;
}
.star:nth-child(463) {
  transform: translate3d(-106.25px, 24.75px, -182.5px) rotateY(44deg);
}
.star:nth-child(463)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1814ms -1521ms infinite;
          animation: code 1814ms -1521ms infinite;
}
.star:nth-child(464) {
  transform: translate3d(-183.25px, -135px, 251px) rotateY(345deg);
}
.star:nth-child(464)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1880ms -180ms infinite;
          animation: code 1880ms -180ms infinite;
}
.star:nth-child(465) {
  transform: translate3d(201.5px, 200px, -122.25px) rotateY(325deg);
}
.star:nth-child(465)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1492ms -1402ms infinite;
          animation: code 1492ms -1402ms infinite;
}
.star:nth-child(466) {
  transform: translate3d(-16px, -143.5px, -98.5px) rotateY(353deg);
}
.star:nth-child(466)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1603ms -591ms infinite;
          animation: code 1603ms -591ms infinite;
}
.star:nth-child(467) {
  transform: translate3d(248.25px, -31.5px, 57.5px) rotateY(262deg);
}
.star:nth-child(467)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1740ms -930ms infinite;
          animation: code 1740ms -930ms infinite;
}
.star:nth-child(468) {
  transform: translate3d(63.5px, 40.5px, 136px) rotateY(14deg);
}
.star:nth-child(468)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1770ms -724ms infinite;
          animation: code 1770ms -724ms infinite;
}
.star:nth-child(469) {
  transform: translate3d(-32.75px, -101.75px, -120px) rotateY(126deg);
}
.star:nth-child(469)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1441ms -1153ms infinite;
          animation: code 1441ms -1153ms infinite;
}
.star:nth-child(470) {
  transform: translate3d(215.5px, 113px, 54px) rotateY(46deg);
}
.star:nth-child(470)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1430ms -1406ms infinite;
          animation: code 1430ms -1406ms infinite;
}
.star:nth-child(471) {
  transform: translate3d(-83.5px, -116.5px, -15.5px) rotateY(15deg);
}
.star:nth-child(471)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1383ms -1050ms infinite;
          animation: code 1383ms -1050ms infinite;
}
.star:nth-child(472) {
  transform: translate3d(165.5px, 120.5px, -189.75px) rotateY(97deg);
}
.star:nth-child(472)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1822ms -371ms infinite;
          animation: code 1822ms -371ms infinite;
}
.star:nth-child(473) {
  transform: translate3d(56.25px, -243.25px, 82.25px) rotateY(5deg);
}
.star:nth-child(473)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1020ms -1356ms infinite;
          animation: code 1020ms -1356ms infinite;
}
.star:nth-child(474) {
  transform: translate3d(101.5px, 106.25px, -148.25px) rotateY(217deg);
}
.star:nth-child(474)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1918ms -450ms infinite;
          animation: code 1918ms -450ms infinite;
}
.star:nth-child(475) {
  transform: translate3d(-65px, -98.5px, 257px) rotateY(63deg);
}
.star:nth-child(475)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1838ms -200ms infinite;
          animation: code 1838ms -200ms infinite;
}
.star:nth-child(476) {
  transform: translate3d(29.25px, 284.25px, 207.25px) rotateY(15deg);
}
.star:nth-child(476)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1882ms -183ms infinite;
          animation: code 1882ms -183ms infinite;
}
.star:nth-child(477) {
  transform: translate3d(-147.5px, 223.75px, 179.25px) rotateY(229deg);
}
.star:nth-child(477)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1380ms -121ms infinite;
          animation: code 1380ms -121ms infinite;
}
.star:nth-child(478) {
  transform: translate3d(54.75px, 140.5px, -31.75px) rotateY(174deg);
}
.star:nth-child(478)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1276ms -473ms infinite;
          animation: code 1276ms -473ms infinite;
}
.star:nth-child(479) {
  transform: translate3d(166px, 111.5px, -19.75px) rotateY(139deg);
}
.star:nth-child(479)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1443ms -72ms infinite;
          animation: code 1443ms -72ms infinite;
}
.star:nth-child(480) {
  transform: translate3d(319px, 155.5px, 86.5px) rotateY(32deg);
}
.star:nth-child(480)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1995ms -1922ms infinite;
          animation: code 1995ms -1922ms infinite;
}
.star:nth-child(481) {
  transform: translate3d(32.25px, 7px, 322.25px) rotateY(358deg);
}
.star:nth-child(481)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1564ms -1826ms infinite;
          animation: code 1564ms -1826ms infinite;
}
.star:nth-child(482) {
  transform: translate3d(180.5px, 60.75px, 95.75px) rotateY(256deg);
}
.star:nth-child(482)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1866ms -840ms infinite;
          animation: code 1866ms -840ms infinite;
}
.star:nth-child(483) {
  transform: translate3d(-158.75px, 358.75px, 127.25px) rotateY(356deg);
}
.star:nth-child(483)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1019ms -977ms infinite;
          animation: code 1019ms -977ms infinite;
}
.star:nth-child(484) {
  transform: translate3d(-56.25px, 54.75px, 156.5px) rotateY(286deg);
}
.star:nth-child(484)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1186ms -43ms infinite;
          animation: code 1186ms -43ms infinite;
}
.star:nth-child(485) {
  transform: translate3d(-62.25px, 172.75px, -251.25px) rotateY(341deg);
}
.star:nth-child(485)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1132ms -210ms infinite;
          animation: code 1132ms -210ms infinite;
}
.star:nth-child(486) {
  transform: translate3d(-292px, 38.25px, -144px) rotateY(26deg);
}
.star:nth-child(486)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1046ms -296ms infinite;
          animation: code 1046ms -296ms infinite;
}
.star:nth-child(487) {
  transform: translate3d(-170.25px, -16.25px, 134.5px) rotateY(55deg);
}
.star:nth-child(487)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1509ms -194ms infinite;
          animation: code 1509ms -194ms infinite;
}
.star:nth-child(488) {
  transform: translate3d(94.75px, -84px, -208px) rotateY(200deg);
}
.star:nth-child(488)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1619ms -1231ms infinite;
          animation: code 1619ms -1231ms infinite;
}
.star:nth-child(489) {
  transform: translate3d(-47.25px, 37.75px, 10px) rotateY(291deg);
}
.star:nth-child(489)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1685ms -1125ms infinite;
          animation: code 1685ms -1125ms infinite;
}
.star:nth-child(490) {
  transform: translate3d(-95.75px, -20.5px, 134px) rotateY(189deg);
}
.star:nth-child(490)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1614ms -1390ms infinite;
          animation: code 1614ms -1390ms infinite;
}
.star:nth-child(491) {
  transform: translate3d(-220.5px, -251px, 171.75px) rotateY(242deg);
}
.star:nth-child(491)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1346ms -200ms infinite;
          animation: code 1346ms -200ms infinite;
}
.star:nth-child(492) {
  transform: translate3d(-133.25px, 247.25px, -181px) rotateY(353deg);
}
.star:nth-child(492)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1214ms -340ms infinite;
          animation: code 1214ms -340ms infinite;
}
.star:nth-child(493) {
  transform: translate3d(-159px, -76px, -66.75px) rotateY(340deg);
}
.star:nth-child(493)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1279ms -979ms infinite;
          animation: code 1279ms -979ms infinite;
}
.star:nth-child(494) {
  transform: translate3d(-75.25px, 185.75px, 88.75px) rotateY(139deg);
}
.star:nth-child(494)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1907ms -1885ms infinite;
          animation: code 1907ms -1885ms infinite;
}
.star:nth-child(495) {
  transform: translate3d(75px, -75px, 2.75px) rotateY(317deg);
}
.star:nth-child(495)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1472ms -1354ms infinite;
          animation: code 1472ms -1354ms infinite;
}
.star:nth-child(496) {
  transform: translate3d(-332px, 199.5px, -56.5px) rotateY(338deg);
}
.star:nth-child(496)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1899ms -849ms infinite;
          animation: code 1899ms -849ms infinite;
}
.star:nth-child(497) {
  transform: translate3d(126px, -83.5px, -116px) rotateY(156deg);
}
.star:nth-child(497)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1543ms -550ms infinite;
          animation: code 1543ms -550ms infinite;
}
.star:nth-child(498) {
  transform: translate3d(36px, -64.5px, 84.75px) rotateY(107deg);
}
.star:nth-child(498)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1305ms -71ms infinite;
          animation: code 1305ms -71ms infinite;
}
.star:nth-child(499) {
  transform: translate3d(9.25px, 89px, -43.25px) rotateY(25deg);
}
.star:nth-child(499)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1245ms -1312ms infinite;
          animation: code 1245ms -1312ms infinite;
}
.star:nth-child(500) {
  transform: translate3d(106.25px, -22px, 172.5px) rotateY(187deg);
}
.star:nth-child(500)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1075ms -672ms infinite;
          animation: code 1075ms -672ms infinite;
}
.star:nth-child(501) {
  transform: translate3d(-111.5px, 2.25px, 42.75px) rotateY(312deg);
}
.star:nth-child(501)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1652ms -1224ms infinite;
          animation: code 1652ms -1224ms infinite;
}
.star:nth-child(502) {
  transform: translate3d(21.25px, -140.75px, 73.75px) rotateY(83deg);
}
.star:nth-child(502)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1759ms -534ms infinite;
          animation: code 1759ms -534ms infinite;
}
.star:nth-child(503) {
  transform: translate3d(198.25px, -133.25px, 27.25px) rotateY(29deg);
}
.star:nth-child(503)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1377ms -30ms infinite;
          animation: code 1377ms -30ms infinite;
}
.star:nth-child(504) {
  transform: translate3d(32.25px, -120px, 12px) rotateY(290deg);
}
.star:nth-child(504)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1800ms -947ms infinite;
          animation: code 1800ms -947ms infinite;
}
.star:nth-child(505) {
  transform: translate3d(166.25px, 138px, -190.25px) rotateY(360deg);
}
.star:nth-child(505)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1233ms -395ms infinite;
          animation: code 1233ms -395ms infinite;
}
.star:nth-child(506) {
  transform: translate3d(-67.5px, 114.75px, 20.5px) rotateY(54deg);
}
.star:nth-child(506)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1810ms -630ms infinite;
          animation: code 1810ms -630ms infinite;
}
.star:nth-child(507) {
  transform: translate3d(132.5px, 214.75px, -223px) rotateY(30deg);
}
.star:nth-child(507)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1385ms -908ms infinite;
          animation: code 1385ms -908ms infinite;
}
.star:nth-child(508) {
  transform: translate3d(177.5px, -66.5px, 133.25px) rotateY(137deg);
}
.star:nth-child(508)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1612ms -1633ms infinite;
          animation: code 1612ms -1633ms infinite;
}
.star:nth-child(509) {
  transform: translate3d(-84.75px, -167.5px, -99.75px) rotateY(6deg);
}
.star:nth-child(509)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1068ms -616ms infinite;
          animation: code 1068ms -616ms infinite;
}
.star:nth-child(510) {
  transform: translate3d(-99.5px, 309.5px, -166.5px) rotateY(146deg);
}
.star:nth-child(510)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1603ms -210ms infinite;
          animation: code 1603ms -210ms infinite;
}
.star:nth-child(511) {
  transform: translate3d(168.75px, 109.75px, -126px) rotateY(232deg);
}
.star:nth-child(511)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1732ms -570ms infinite;
          animation: code 1732ms -570ms infinite;
}
.star:nth-child(512) {
  transform: translate3d(76.75px, -62.25px, 95.75px) rotateY(293deg);
}
.star:nth-child(512)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1797ms -1042ms infinite;
          animation: code 1797ms -1042ms infinite;
}
.star:nth-child(513) {
  transform: translate3d(58.25px, -12.75px, -180.5px) rotateY(191deg);
}
.star:nth-child(513)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1584ms -687ms infinite;
          animation: code 1584ms -687ms infinite;
}
.star:nth-child(514) {
  transform: translate3d(-96.25px, -187.75px, -20px) rotateY(210deg);
}
.star:nth-child(514)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1884ms -803ms infinite;
          animation: code 1884ms -803ms infinite;
}
.star:nth-child(515) {
  transform: translate3d(-194.5px, -50.75px, 38.5px) rotateY(34deg);
}
.star:nth-child(515)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1312ms -431ms infinite;
          animation: code 1312ms -431ms infinite;
}
.star:nth-child(516) {
  transform: translate3d(72.75px, 11.75px, 98.5px) rotateY(126deg);
}
.star:nth-child(516)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1278ms -3ms infinite;
          animation: code 1278ms -3ms infinite;
}
.star:nth-child(517) {
  transform: translate3d(-169.25px, 30.75px, -53.5px) rotateY(290deg);
}
.star:nth-child(517)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1514ms -344ms infinite;
          animation: code 1514ms -344ms infinite;
}
.star:nth-child(518) {
  transform: translate3d(-221px, -60.75px, 29.75px) rotateY(21deg);
}
.star:nth-child(518)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1681ms -728ms infinite;
          animation: code 1681ms -728ms infinite;
}
.star:nth-child(519) {
  transform: translate3d(-316.5px, 298px, 47.75px) rotateY(160deg);
}
.star:nth-child(519)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1334ms -1997ms infinite;
          animation: code 1334ms -1997ms infinite;
}
.star:nth-child(520) {
  transform: translate3d(193px, 156.5px, -118px) rotateY(35deg);
}
.star:nth-child(520)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1089ms -851ms infinite;
          animation: code 1089ms -851ms infinite;
}
.star:nth-child(521) {
  transform: translate3d(-26.5px, -10px, -115px) rotateY(198deg);
}
.star:nth-child(521)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1120ms -1386ms infinite;
          animation: code 1120ms -1386ms infinite;
}
.star:nth-child(522) {
  transform: translate3d(303.5px, -40.25px, 203.25px) rotateY(91deg);
}
.star:nth-child(522)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1077ms -1370ms infinite;
          animation: code 1077ms -1370ms infinite;
}
.star:nth-child(523) {
  transform: translate3d(2.25px, 303.5px, 98px) rotateY(282deg);
}
.star:nth-child(523)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1847ms -962ms infinite;
          animation: code 1847ms -962ms infinite;
}
.star:nth-child(524) {
  transform: translate3d(102.25px, -188.75px, 34px) rotateY(228deg);
}
.star:nth-child(524)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1793ms -196ms infinite;
          animation: code 1793ms -196ms infinite;
}
.star:nth-child(525) {
  transform: translate3d(172.5px, 64.25px, -180.75px) rotateY(261deg);
}
.star:nth-child(525)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1808ms -1333ms infinite;
          animation: code 1808ms -1333ms infinite;
}
.star:nth-child(526) {
  transform: translate3d(-108.75px, -117.75px, -51.25px) rotateY(127deg);
}
.star:nth-child(526)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1354ms -1453ms infinite;
          animation: code 1354ms -1453ms infinite;
}
.star:nth-child(527) {
  transform: translate3d(-60px, -51.25px, -105.25px) rotateY(57deg);
}
.star:nth-child(527)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1398ms -1083ms infinite;
          animation: code 1398ms -1083ms infinite;
}
.star:nth-child(528) {
  transform: translate3d(-234.5px, -185.25px, 76.25px) rotateY(198deg);
}
.star:nth-child(528)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1711ms -1575ms infinite;
          animation: code 1711ms -1575ms infinite;
}
.star:nth-child(529) {
  transform: translate3d(48.75px, -64px, 187px) rotateY(196deg);
}
.star:nth-child(529)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1083ms -1612ms infinite;
          animation: code 1083ms -1612ms infinite;
}
.star:nth-child(530) {
  transform: translate3d(-122px, -182px, -18.25px) rotateY(1deg);
}
.star:nth-child(530)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1810ms -910ms infinite;
          animation: code 1810ms -910ms infinite;
}
.star:nth-child(531) {
  transform: translate3d(23.75px, 149.75px, -132.25px) rotateY(205deg);
}
.star:nth-child(531)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1052ms -1812ms infinite;
          animation: code 1052ms -1812ms infinite;
}
.star:nth-child(532) {
  transform: translate3d(38px, -129px, 82.25px) rotateY(177deg);
}
.star:nth-child(532)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1479ms -486ms infinite;
          animation: code 1479ms -486ms infinite;
}
.star:nth-child(533) {
  transform: translate3d(-131.25px, -147.75px, 172.75px) rotateY(229deg);
}
.star:nth-child(533)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1413ms -192ms infinite;
          animation: code 1413ms -192ms infinite;
}
.star:nth-child(534) {
  transform: translate3d(-215px, 1px, 59.75px) rotateY(16deg);
}
.star:nth-child(534)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1089ms -1086ms infinite;
          animation: code 1089ms -1086ms infinite;
}
.star:nth-child(535) {
  transform: translate3d(28.75px, -58.75px, 200.25px) rotateY(9deg);
}
.star:nth-child(535)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1491ms -1063ms infinite;
          animation: code 1491ms -1063ms infinite;
}
.star:nth-child(536) {
  transform: translate3d(-51px, 130.75px, 114.5px) rotateY(175deg);
}
.star:nth-child(536)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1884ms -278ms infinite;
          animation: code 1884ms -278ms infinite;
}
.star:nth-child(537) {
  transform: translate3d(67px, 146.25px, -60.75px) rotateY(282deg);
}
.star:nth-child(537)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1883ms -984ms infinite;
          animation: code 1883ms -984ms infinite;
}
.star:nth-child(538) {
  transform: translate3d(-181px, -329.25px, 27.5px) rotateY(242deg);
}
.star:nth-child(538)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1985ms -1007ms infinite;
          animation: code 1985ms -1007ms infinite;
}
.star:nth-child(539) {
  transform: translate3d(-166.5px, -130px, 5.5px) rotateY(124deg);
}
.star:nth-child(539)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1039ms -790ms infinite;
          animation: code 1039ms -790ms infinite;
}
.star:nth-child(540) {
  transform: translate3d(-117.25px, -118.75px, 31.75px) rotateY(219deg);
}
.star:nth-child(540)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1341ms -853ms infinite;
          animation: code 1341ms -853ms infinite;
}
.star:nth-child(541) {
  transform: translate3d(-45.5px, 18.5px, -87.5px) rotateY(142deg);
}
.star:nth-child(541)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1575ms -458ms infinite;
          animation: code 1575ms -458ms infinite;
}
.star:nth-child(542) {
  transform: translate3d(-17.75px, -266px, -9.5px) rotateY(307deg);
}
.star:nth-child(542)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1377ms -1526ms infinite;
          animation: code 1377ms -1526ms infinite;
}
.star:nth-child(543) {
  transform: translate3d(-78px, 157px, 234px) rotateY(163deg);
}
.star:nth-child(543)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1006ms -962ms infinite;
          animation: code 1006ms -962ms infinite;
}
.star:nth-child(544) {
  transform: translate3d(254.5px, 230.25px, 239.75px) rotateY(139deg);
}
.star:nth-child(544)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1950ms -409ms infinite;
          animation: code 1950ms -409ms infinite;
}
.star:nth-child(545) {
  transform: translate3d(-33.25px, -79.5px, 102.75px) rotateY(62deg);
}
.star:nth-child(545)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1634ms -1027ms infinite;
          animation: code 1634ms -1027ms infinite;
}
.star:nth-child(546) {
  transform: translate3d(92.5px, -136px, 235px) rotateY(153deg);
}
.star:nth-child(546)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1548ms -1019ms infinite;
          animation: code 1548ms -1019ms infinite;
}
.star:nth-child(547) {
  transform: translate3d(26.75px, 6.5px, -76.5px) rotateY(135deg);
}
.star:nth-child(547)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1728ms -871ms infinite;
          animation: code 1728ms -871ms infinite;
}
.star:nth-child(548) {
  transform: translate3d(147.25px, -96.75px, 38.25px) rotateY(240deg);
}
.star:nth-child(548)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1284ms -1601ms infinite;
          animation: code 1284ms -1601ms infinite;
}
.star:nth-child(549) {
  transform: translate3d(149px, -110.75px, 155.25px) rotateY(311deg);
}
.star:nth-child(549)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1931ms -26ms infinite;
          animation: code 1931ms -26ms infinite;
}
.star:nth-child(550) {
  transform: translate3d(212.25px, -67.75px, -102.5px) rotateY(149deg);
}
.star:nth-child(550)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1235ms -1677ms infinite;
          animation: code 1235ms -1677ms infinite;
}
.star:nth-child(551) {
  transform: translate3d(-45px, -59.25px, 3px) rotateY(354deg);
}
.star:nth-child(551)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1310ms -723ms infinite;
          animation: code 1310ms -723ms infinite;
}
.star:nth-child(552) {
  transform: translate3d(-89.75px, -17.25px, 96.75px) rotateY(159deg);
}
.star:nth-child(552)::before {
  content: "L";
  position: absolute;
  -webkit-animation: code 1042ms -1255ms infinite;
          animation: code 1042ms -1255ms infinite;
}
.star:nth-child(553) {
  transform: translate3d(34.5px, 58px, -119.75px) rotateY(99deg);
}
.star:nth-child(553)::before {
  content: &q.........完整代码请登录后点击上方下载按钮下载查看

网友评论0