/* Reset fixes positioning header for example */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Importing custom fonts */
@font-face {
  font-family: 'KalamayaRegular';
  src: url('../Fonts/KalamayaRegular-ALyLp.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SmilePower';
  src: url('../Fonts/SmilePowerPersonalUse-7Bl1l.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Wobblepop';
  src: url('../Fonts/WobblepopRegular-m2lvm.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Acid-trip background over Cuijk colors */
body {
  background: linear-gradient(135deg, #FCDD09, #DA121A, #FCDD09);
  background-size: 400% 400%;
  animation: bgshift 15s ease infinite;
  color: #DA121A;
  text-align: center;
  overflow-x: hidden;
  /* Fonts for main items like p */
  font-family: wobblepop, Arial, sans-serif;
}
/* Fonts for secondary items */
h2,
h3,
h4,
h5,
h6,
a,
select,
label,
button {
  font-family: 'KalamayaRegular', Arial, sans-serif;
}


/* Strepen van de vlag */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../Images/vlag.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
  mix-blend-mode: overlay;
  opacity: 0.7;
  animation: spinny 60s linear infinite;
}


/* Navigatie */
nav {
  margin: 20px 0;
}
/* Flexbox for nav items */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* Styling for links, form elements, and buttons */
nav ul li a,
select,
form,
input[type="text"],
textarea,
button {
  display: inline-block;
  padding: 18px 28px;
  background: #DA121A;
  color: #FCDD09;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease, filter 0.3s ease;
}
/* Hover effect for links */
nav ul li a:hover {
  transform: scale(1.07) rotate(2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

/* Active link gets inverted rave colors */
.active {
  background: #FCDD09;
  color: #DA121A;
  border-radius: 15px;
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  text-decoration: underline;
  animation: glow 1.5s ease-in-out infinite alternate;
}

/* Content-box for main*/
main {
  max-width: 80%;
  margin: 20px auto;
  padding: 20px;
  background: rgba(252, 221, 9, 0.9);
  border-radius: 20px;
  color: #DA121A;
  font-size: 18px;
  line-height: 1.6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.3s ease;
}

main:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}
/* Tables center */
table {
  text-align: center;
  width: 72%;
  padding-left: 36%;
  padding-right: 10%;
}
td{
  border: 2px solid black;
}
/* Header */
header {
  background: #DA121A;
  color: #FCDD09;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'KalamayaRegular', Arial, sans-serif;
}
/* Header text with unique font and glow */
header h1, h1 {
  margin: 0;
  font-size: 2rem;
  text-shadow: 0 0 10px #fff700, 0 0 20px #ff0080;
  font-family: 'SmilePower', Arial, sans-serif;
}

header p {
  margin: 5px 0 0;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #DA121A;
  color: #FCDD09;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

/* Image */
.BigImg {
  height: 50%;
  width: 50%;
  border-radius: 18px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
/* Image hover effect */
.BigImg:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}
/* Header image styling */
.headerImg {
  height: 20%;
  width: 20%;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Shaping iframes */
iframe {
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  margin: 10px 0;
  width: 50%;
}



/* Responsiveness for mobile */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav ul li a {
    font-size: 20px;
    padding: 12px 20px;
  }

  main {
    max-width: 95%;
    font-size: 16px;
    padding: 15px;
  }

  header h1 {
    font-size: 1.6rem;
  }

  header p {
    font-size: 1rem;
  }

  .normalImg {
    width: 80%;
    height: auto;
  }

  .headerImg {
    width: 40%;
    height: auto;
  }
}


/* ?? Apply to everything that should rave */
.wildparty {
  animation: ultimateParty 10000.0s infinite linear;
  transform-origin: center;
  display: inline-block;
}


/* ?? Acid Animations for glowy text */
@keyframes glow {
  from {
    text-shadow: 0 0 5px #ff0080, 0 0 15px #ff0080, 0 0 30px #ff0080;
  }

  to {
    text-shadow: 0 0 10px #00f0ff, 0 0 25px #00f0ff, 0 0 45px #00f0ff;
  }
}

/** Spinny animation for background */
@keyframes spinny {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* Animations for easter egg  */
@keyframes ultimateParty {
  0.0% {
    transform: scale(2.0) rotate(-649.9deg) skew(10.5deg, -31.5deg) translate(-34.9px, 99.1px);
    filter: hue-rotate(25.6deg) blur(3.7px) saturate(198%);
    opacity: 0.48;
    background: lime;
    text-shadow: -2px 9px 14px yellow, -25px -16px 25px orange, 29px 8px 26px blue, 8px -15px 31px lime, -7px -25px 26px pink, 14px 16px 9px yellow, 29px 8px 27px purple, -18px -23px 9px yellow, 1px -9px 16px cyan, -1px -4px 7px purple;
  }

  0.1% {
    transform: scale(0.97) rotate(408.5deg) skew(76.1deg, -78.3deg) translate(-42.2px, 65.2px);
    filter: hue-rotate(93.6deg) blur(9.7px) saturate(247%);
    opacity: 0.6;
    background: #ff0080;
    text-shadow: -16px -7px 26px red, 23px -3px 20px cyan, -20px 7px 47px yellow, -28px 25px 50px red, -3px -16px 47px yellow, -24px 18px 6px pink, 8px 30px 17px pink, 6px -30px 38px yellow, 18px -18px 22px red, 26px -5px 21px blue;
  }

  0.2% {
    transform: scale(1.29) rotate(143.8deg) skew(-42.6deg, -1.8deg) translate(97.1px, -33.6px);
    filter: hue-rotate(143.7deg) blur(4.1px) saturate(176%);
    opacity: 0.71;
    background: cyan;
    text-shadow: 16px -6px 45px red, -7px -23px 48px purple, 4px -21px 8px cyan, 10px -24px 5px lime, 8px -28px 25px pink, -7px 29px 27px red, -23px 13px 29px lime, 21px -20px 8px magenta, -1px -30px 44px purple, 5px -3px 6px blue;
  }

  0.3% {
    transform: scale(1.33) rotate(256.6deg) skew(0.9deg, 83.0deg) translate(-99.5px, 15.9px);
    filter: hue-rotate(166.8deg) blur(7.5px) saturate(66%);
    opacity: 0.81;
    background: blue;
    text-shadow: 17px -3px 32px orange, -29px -4px 49px yellow, -11px 15px 36px pink, -18px 15px 7px magenta, -14px 9px 37px pink, -5px 18px 42px purple, -13px 23px 14px #ff0080, -13px 12px 42px orange, 22px -29px 9px yellow, 25px 9px 18px #ff0080;
  }

  0.4% {
    transform: scale(1.26) rotate(577.6deg) skew(-45.2deg, 63.5deg) translate(-46.3px, -4.3px);
    filter: hue-rotate(307.0deg) blur(3.6px) saturate(161%);
    opacity: 0.32;
    background: purple;
    text-shadow: -16px -10px 25px purple, -2px -17px 48px pink, -11px -12px 11px #ff0080, -3px 15px 32px yellow, 18px -8px 47px cyan, 22px 7px 14px yellow, 23px -28px 6px pink, 2px -7px 39px purple, 2px 9px 16px magenta, 15px -4px 23px purple;
  }

  0.5% {
    transform: scale(1.26) rotate(712.8deg) skew(-30.4deg, 70.7deg) translate(13.3px, -36.6px);
    filter: hue-rotate(98.4deg) blur(9.2px) saturate(93%);
    opacity: 0.44;
    background: yellow;
    text-shadow: -20px 15px 27px magenta, -6px 7px 36px blue, -24px 21px 42px blue, 3px -7px 17px pink, 3px 8px 42px lime, 0px -4px 20px magenta, -10px -14px 5px lime, -5px -30px 34px #ff0080, 4px -1px 24px lime, 17px 17px 38px magenta;
  }

  0.6% {
    transform: scale(1.82) rotate(-409.0deg) skew(-73.6deg, -65.2deg) translate(90.7px, -12.8px);
    filter: hue-rotate(97.7deg) blur(5.0px) saturate(222%);
    opacity: 0.68;
    background: orange;
    text-shadow: 29px 20px 39px pink, 20px -10px 22px yellow, 5px -8px 35px orange, -17px 23px 44px purple, -20px -22px 27px magenta, -13px 11px 26px orange, -5px 9px 19px pink, -25px 22px 10px blue, 16px -5px 10px pink, -14px 3px 11px blue;
  }

  0.7% {
    transform: scale(1.04) rotate(401.2deg) skew(15.0deg, -62.7deg) translate(-49.5px, 27.4px);
    filter: hue-rotate(138.3deg) blur(6.4px) saturate(252%);
    opacity: 0.74;
    background: blue;
    text-shadow: -13px 5px 12px magenta, -19px -14px 12px pink, -24px -22px 35px orange, 9px -24px 8px yellow, 21px 26px 49px yellow, 19px -21px 48px blue, -29px -29px 41px #ff0080, 1px 29px 37px yellow, 12px -29px 21px cyan, -13px 2px 27px pink;
  }

  0.8% {
    transform: scale(1.9) rotate(-297.2deg) skew(62.5deg, -74.7deg) translate(62.4px, 71.8px);
    filter: hue-rotate(191.9deg) blur(2.2px) saturate(105%);
    opacity: 0.48;
    background: magenta;
    text-shadow: -25px -26px 50px blue, -9px 6px 14px cyan, 0px -4px 5px cyan, -18px 4px 45px cyan, -4px -17px 29px purple, -28px 19px 22px pink, -14px 20px 24px orange, -5px -20px 21px yellow, -21px 27px 10px blue, -26px -5px 42px red;
  }

  0.9% {
    transform: scale(1.11) rotate(-202.6deg) skew(-73.6deg, 68.3deg) translate(-8.9px, 64.2px);
    filter: hue-rotate(96.1deg) blur(8.5px) saturate(252%);
    opacity: 0.54;
    background: magenta;
    text-shadow: -26px -28px 33px blue, 25px 29px 40px orange, 17px -12px 8px cyan, -17px 22px 21px yellow, -11px 12px 18px blue, 13px -25px 34px magenta, 20px -18px 18px orange, -7px 29px 13px yellow, 9px 21px 47px #ff0080, -29px -21px 36px red;
  }

  1.0% {
    transform: scale(1.74) rotate(-402.3deg) skew(-52.8deg, -24.1deg) translate(90.9px, 26.1px);
    filter: hue-rotate(314.7deg) blur(6.2px) saturate(190%);
    opacity: 0.78;
    background: yellow;
    text-shadow: 10px -4px 36px pink, -24px 26px 19px red, -16px -12px 22px #ff0080, 19px -8px 44px lime, 11px 23px 5px cyan, 25px -16px 30px red, 3px 6px 35px magenta, 20px -13px 19px purple, -27px -9px 37px magenta, 20px -7px 20px cyan;
  }

  1.1% {
    transform: scale(1.98) rotate(627.6deg) skew(-63.6deg, -74.7deg) translate(38.1px, -11.6px);
    filter: hue-rotate(150.7deg) blur(4.3px) saturate(97%);
    opacity: 0.91;
    background: magenta;
    text-shadow: 2px -30px 29px orange, -18px -3px 38px magenta, 4px -8px 45px blue, 15px 16px 41px cyan, 25px 0px 21px purple, 13px -26px 23px magenta, 27px 30px 9px pink, 6px -24px 38px pink, 30px 29px 50px red, 25px -17px 9px yellow;
  }

  1.2% {
    transform: scale(1.1) rotate(518.2deg) skew(-61.5deg, -75.6deg) translate(-47.2px, -99.2px);
    filter: hue-rotate(284.7deg) blur(7.4px) saturate(65%);
    opacity: 0.69;
    background: red;
    text-shadow: -9px -2px 21px red, 28px 28px 26px blue, -6px 11px 22px red, 8px -15px 30px red, -13px -22px 32px #ff0080, -21px 30px 43px pink, 6px 18px 35px red, -25px 22px 44px cyan, -9px 29px 10px magenta, -5px -4px 47px pink;
  }

  1.3% {
    transform: scale(0.52) rotate(-320.2deg) skew(31.5deg, 26.5deg) translate(75.5px, -84.5px);
    filter: hue-rotate(196.2deg) blur(7.2px) saturate(288%);
    opacity: 0.63;
    background: blue;
    text-shadow: 16px -28px 20px red, 4px 15px 30px blue, 15px -5px 32px purple, -25px -12px 22px red, -26px -19px 43px pink, 17px 29px 14px red, -18px -7px 27px pink, -2px -25px 9px lime, 8px 11px 43px pink, -16px 29px 21px orange;
  }

  1.4% {
    transform: scale(0.62) rotate(-200.9deg) skew(-65.7deg, 38.9deg) translate(-98.3px, 18.8px);
    filter: hue-rotate(356.6deg) blur(8.0px) saturate(87%);
    opacity: 0.81;
    background: magenta;
    text-shadow: 7px 19px 19px red, -22px -18px 26px cyan, 28px 10px 12px orange, -20px 12px 7px red, -2px -19px 18px pink, 18px -15px 21px orange, 28px 29px 22px cyan, 14px 2px 5px orange, 6px 14px 25px blue, -27px -8px 11px blue;
  }

  1.5% {
    transform: scale(1.16) rotate(-234.9deg) skew(50.7deg, -4.1deg) translate(13.5px, 58.8px);
    filter: hue-rotate(114.8deg) blur(0.7px) saturate(166%);
    opacity: 0.31;
    background: magenta;
    text-shadow: -9px -29px 21px orange, -12px 15px 11px orange, 17px -26px 37px orange, 21px -30px 31px orange, 24px -30px 39px lime, -4px 21px 32px #ff0080, 12px -23px 6px lime, -20px -17px 38px lime, -1px 5px 35px pink, 5px -17px 48px blue;
  }

  1.6% {
    transform: scale(1.14) rotate(-610.8deg) skew(57.8deg, 75.6deg) translate(57.0px, -23.7px);
    filter: hue-rotate(97.7deg) blur(0.8px) saturate(54%);
    opacity: 0.81;
    background: red;
    text-shadow: -23px -6px 26px red, 23px -15px 26px magenta, -10px -13px 32px orange, 28px -14px 34px magenta, 19px -24px 8px magenta, 23px 4px 7px #ff0080, 22px 16px 31px blue, 24px 30px 39px yellow, 18px -16px 43px blue, 21px 17px 20px magenta;
  }

  1.7% {
    transform: scale(1.34) rotate(248.9deg) skew(-31.2deg, 59.3deg) translate(-96.6px, 12.1px);
    filter: hue-rotate(22.4deg) blur(7.2px) saturate(252%);
    opacity: 0.87;
    background: orange;
    text-shadow: -12px -29px 26px #ff0080, -19px -10px 48px cyan, 22px -23px 11px lime, 22px 29px 10px yellow, -27px -16px 34px cyan, -10px -30px 15px cyan, 2px 25px 22px magenta, -1px 15px 28px blue, 23px -6px 19px lime, 0px 22px 8px yellow;
  }

  1.8% {
    transform: scale(1.56) rotate(486.1deg) skew(22.9deg, -83.2deg) translate(26.1px, 46.1px);
    filter: hue-rotate(222.8deg) blur(6.0px) saturate(168%);
    opacity: 0.5;
    background: blue;
    text-shadow: 12px 23px 39px pink, 6px -25px 48px purple, -20px -13px 17px pink, 26px 17px 46px orange, -19px 9px 37px pink, 24px -19px 44px purple, -4px 15px 7px blue, -25px -1px 45px magenta, -8px -25px 50px yellow, 28px 12px 29px cyan;
  }

  1.9% {
    transform: scale(1.66) rotate(-133.8deg) skew(39.3deg, -88.1deg) translate(-27.6px, -18.8px);
    filter: hue-rotate(106.6deg) blur(6.1px) saturate(247%);
    opacity: 0.61;
    background: blue;
    text-shadow: 22px -10px 25px #ff0080, -5px 14px 28px #ff0080, 4px 15px 39px #ff0080, 30px 20px 29px red, 10px -16px 31px orange, 24px 27px 27px magenta, -28px 15px 13px cyan, 19px 29px 37px red, -21px -2px 47px cyan, 13px 23px 50px yellow;
  }

  2.0% {
    transform: scale(0.77) rotate(-621.6deg) skew(33.2deg, -10.1deg) translate(70.5px, -95.7px);
    filter: hue-rotate(263.0deg) blur(7.9px) saturate(296%);
    opacity: 0.53;
    background: orange;
    text-shadow: -20px 3px 44px yellow, -7px -6px 28px purple, -22px -29px 49px pink, 27px 12px 33px #ff0080, -18px 9px 30px yellow, 29px 23px 35px magenta, 18px -2px 41px orange, 6px 15px 7px #ff0080, 3px -20px 14px pink, -22px -6px 32px magenta;
  }

  2.1% {
    transform: scale(0.79) rotate(-375.3deg) skew(-31.0deg, -5.8deg) translate(34.7px, 41.0px);
    filter: hue-rotate(353.7deg) blur(2.5px) saturate(212%);
    opacity: 0.38;
    background: orange;
    text-shadow: -18px -29px 47px #ff0080, -6px 23px 48px blue, 10px 18px 17px cyan, 30px -16px 28px orange, 8px -25px 13px pink, -4px 8px 37px purple, -6px 6px 13px yellow, 16px -15px 31px cyan, 28px 28px 12px purple, 13px 14px 26px orange;
  }

  2.2% {
    transform: scale(1.32) rotate(181.9deg) skew(59.7deg, 61.1deg) translate(-57.2px, -39.3px);
    filter: hue-rotate(277.8deg) blur(7.9px) saturate(255%);
    opacity: 0.52;
    background: purple;
    text-shadow: 30px 2px 42px pink, 30px 22px 10px red, 1px -17px 36px lime, 25px -15px 23px purple, -9px 20px 25px cyan, 29px 22px 15px red, 3px 19px 27px orange, 22px -4px 19px cyan, 7px -17px 42px red, -30px 3px 48px magenta;
  }

  2.3% {
    transform: scale(1.1) rotate(-595.2deg) skew(59.2deg, 28.6deg) translate(28.0px, -24.1px);
    filter: hue-rotate(111.6deg) blur(3.1px) saturate(279%);
    opacity: 0.4;
    background: cyan;
    text-shadow: -7px 14px 22px orange, 12px -19px 40px #ff0080, 21px 18px 37px #ff0080, 29px -20px 46px yellow, -27px -23px 40px blue, -17px 10px 40px lime, -1px -27px 24px red, -16px -4px 32px cyan, 13px 23px 13px magenta, 20px -30px 12px yellow;
  }

  2.4% {
    transform: scale(1.53) rotate(-439.0deg) skew(-59.2deg, -73.4deg) translate(-27.5px, -24.6px);
    filter: hue-rotate(235.4deg) blur(4.6px) saturate(122%);
    opacity: 0.44;
    background: red;
    text-shadow: 3px -16px 45px blue, 14px -30px 7px magenta, -23px 28px 20px cyan, -11px -21px 20px red, -29px 26px 43px pink, 21px 16px 36px red, -2px -27px 24px red, 24px 18px 20px blue, -26px -6px 21px yellow, -22px -9px 26px pink;
  }

  2.5% {
    transform: scale(1.23) rotate(633.3deg) skew(60.9deg, 70.9deg) translate(-76.5px, -60.2px);
    filter: hue-rotate(64.5deg) blur(5.3px) saturate(236%);
    opacity: 0.43;
    background: red;
    text-shadow: -3px 14px 20px blue, -7px -11px 11px purple, -26px 8px 43px pink, 15px 26px 5px orange, 1px 17px 41px cyan, -25px 26px 49px yellow, -13px 2px 7px pink, -12px -1px 8px pink, 27px 5px 37px pink, -3px 25px 17px lime;
  }

  2.6% {
    transform: scale(0.6) rotate(120.1deg) skew(-30.4deg, 46.2deg) translate(-87.3px, -21.6px);
    filter: hue-rotate(167.9deg) blur(6.1px) saturate(213%);
    opacity: 0.6;
    background: red;
    text-shadow: 0px 19px 34px purple, -17px 16px 23px #ff0080, 23px -29px 50px orange, -23px 5px 25px magenta, 6px -15px 39px #ff0080, -29px -16px 49px lime, 4px -28px 46px pink, -11px -14px 18px red, -30px 23px 10px red, -21px 7px 6px yellow;
  }

  2.7% {
    transform: scale(1.98) rotate(-55.5deg) skew(17.0deg, 68.7deg) translate(52.6px, 67.2px);
    filter: hue-rotate(38.0deg) blur(1.0px) saturate(79%);
    opacity: 0.95;
    background: purple;
    text-shadow: -7px 9px 44px lime, 14px 27px 37px red, -22px 14px 47px purple, -13px -9px 12px blue, 8px 20px 19px magenta, -9px -8px 35px blue, 1px 26px 6px orange, 28px 3px 30px orange, -8px -6px 38px purple, 16px 13px 21px purple;
  }

  2.8% {
    transform: scale(0.97) rotate(-5.2deg) skew(-75.7deg, -82.3deg) translate(36.0px, 30.5px);
    filter: hue-rotate(303.0deg) blur(2.4px) saturate(133%);
    opacity: 0.9;
    background: pink;
    text-shadow: -22px -20px 14px lime, 9px 26px 50px magenta, -22px -5px 26px yellow, 2px 15px 11px purple, -16px -27px 16px yellow, -17px -1px 46px purple, 19px 20px 10px red, -2px -27px 29px red, 9px -24px 30px red, 2px 10px 24px lime;
  }

  2.9% {
    transform: scale(0.62) rotate(-101.9deg) skew(24.9deg, 40.1deg) translate(-50.5px, 44.6px);
    filter: hue-rotate(147.7deg) blur(0.1px) saturate(75%);
    opacity: 0.56;
    background: cyan;
    text-shadow: -10px 4px 19px #ff0080, 16px -20px 40px pink, -13px 26px 28px pink, -24px -18px 20px red, 12px 6px 14px cyan, -7px -1px 11px pink, 12px -17px 38px cyan, 8px -20px 47px orange, -3px 27px 30px blue, 0px 15px 34px magenta;
  }

  3.0% {
    transform: scale(0.84) rotate(304.8deg) skew(25.6deg, -5.9deg) translate(12.5px, -99.0px);
    filter: hue-rotate(314.1deg) blur(2.8px) saturate(170%);
    opacity: 0.35;
    background: #ff0080;
    text-shadow: -20px 3px 30px blue, -4px -28px 17px purple, 2px -3px 23px blue, 0px 7px 34px cyan, 2px 23px 40px pink, -14px 1px 11px blue, 28px 29px 21px red, 20px -13px 30px yellow, -5px -10px 26px lime, 2px 3px 20px magenta;
  }

  3.1% {
    transform: scale(0.76) rotate(-87.9deg) skew(32.5deg, 76.6deg) translate(-21.9px, 75.8px);
    filter: hue-rotate(22.6deg) blur(8.0px) saturate(77%);
    opacity: 0.31;
    background: cyan;
    text-shadow: 17px -20px 22px cyan, 13px -21px 34px blue, -11px 3px 25px purple, 26px -6px 40px orange, -10px 21px 7px magenta, -11px 18px 32px yellow, -11px -25px 19px cyan, -15px 1px 50px red, -16px 30px 43px #ff0080, 2px 20px 47px blue;
  }

  3.2% {
    transform: scale(0.59) rotate(647.3deg) skew(17.8deg, 43.3deg) translate(32.9px, -71.2px);
    filter: hue-rotate(350.1deg) blur(9.1px) saturate(102%);
    opacity: 0.5;
    background: #ff0080;
    text-shadow: 1px -28px 32px blue, -21px 25px 35px orange, -23px -16px 13px orange, 7px -5px 18px blue, -1px 2px 39px yellow, 14px -25px 14px yellow, 22px 17px 12px blue, -1px -4px 48px magenta, 5px -5px 33px yellow, -25px 1px 38px orange;
  }

  3.3% {
    transform: scale(0.95) rotate(440.7deg) skew(79.3deg, -11.0deg) translate(-8.6px, -83.0px);
    filter: hue-rotate(328.1deg) blur(3.2px) saturate(174%);
    opacity: 0.55;
    background: cyan;
    text-shadow: 12px -25px 34px blue, -20px -16px 31px yellow, -17px -26px 21px orange, 27px 7px 35px purple, -3px -7px 21px #ff0080, 27px -21px 20px magenta, -2px -17px 35px magenta, 30px 3px 28px purple, -30px -18px 40px pink, 21px 27px 41px orange;
  }

  3.4% {
    transform: scale(1.19) rotate(-573.6deg) skew(37.9deg, -44.5deg) translate(-39.0px, -53.0px);
    filter: hue-rotate(309.9deg) blur(2.4px) saturate(271%);
    opacity: 0.64;
    background: red;
    text-shadow: 22px -22px 50px red, -13px -13px 14px cyan, 26px 25px 22px lime, -1px 18px 7px orange, -3px 12px 29px #ff0080, 1px 24px 27px red, 17px -23px 21px red, -28px 7px 11px yellow, 28px -9px 26px lime, -27px 24px 30px purple;
  }

  3.5% {
    transform: scale(1.49) rotate(114.4deg) skew(-47.6deg, 16.6deg) translate(75.4px, 24.7px);
    filter: hue-rotate(170.4deg) blur(6.0px) saturate(157%);
    opacity: 0.69;
    background: purple;
    text-shadow: -15px 0px 49px cyan, 29px 2px 15px purple, 29px -25px 18px purple, 21px -4px 27px pink, -30px 9px 35px lime, -9px -18px 44px red, 6px -10px 18px #ff0080, 28px -13px 8px pink, 15px 27px 40px red, 24px 27px 20px blue;
  }

  3.6% {
    transform: scale(1.53) rotate(450.0deg) skew(85.7deg, -49.3deg) translate(-43.1px, -0.2px);
    filter: hue-rotate(341.5deg) blur(5.5px) saturate(297%);
    opacity: 0.96;
    background: red;
    text-shadow: -15px -4px 10px orange, 2px -20px 36px red, -9px -8px 16px cyan, -5px -24px 26px magenta, 30px 16px 8px blue, 8px 22px 41px #ff0080, 9px 30px 41px orange, -25px -13px 27px yellow, -30px -17px 18px pink, -2px -30px 15px #ff0080;
  }

  3.7% {
    transform: scale(1.36) rotate(-208.0deg) skew(12.3deg, -39.5deg) translate(24.6px, 33.8px);
    filter: hue-rotate(337.9deg) blur(4.7px) saturate(129%);
    opacity: 0.79;
    background: orange;
    text-shadow: 28px -3px 33px lime, -12px -12px 10px purple, 11px -27px 34px red, 11px 27px 10px magenta, 22px -7px 47px yellow, 8px -9px 29px red, -3px 23px 33px yellow, 14px -27px 50px orange, -1px -12px 34px lime, -29px -7px 31px purple;
  }

  3.8% {
    transform: scale(1.78) rotate(-673.8deg) skew(-46.9deg, -60.0deg) translate(-66.4px, -75.4px);
    filter: hue-rotate(64.1deg) blur(7.1px) saturate(124%);
    opacity: 0.97;
    background: cyan;
    text-shadow: 8px 14px 35px magenta, -19px -1px 20px #ff0080, 26px -11px 20px #ff0080, 12px -3px 21px orange, 24px 19px 45px magenta, -4px -17px 12px red, 9px -28px 32px purple, -19px 28px 12px magenta, -16px -17px 23px yellow, -21px -19px 7px red;
  }

  3.9% {
    transform: scale(1.06) rotate(-650.3deg) skew(65.3deg, 32.1deg) translate(-79.5px, 23.8px);
    filter: hue-rotate(199.6deg) blur(5.7px) saturate(279%);
    opacity: 0.77;
    background: yellow;
    text-shadow: 30px 9px 41px pink, -9px 26px 22px orange, 20px -20px 8px purple, 17px 21px 31px #ff0080, -30px -23px 16px #ff0080, -17px 25px 10px yellow, 11px -26px 45px yellow, 18px -26px 12px lime, 19px -26px 26px yellow, -28px -21px 19px cyan;
  }

  4.0% {
    transform: scale(0.89) rotate(4.9deg) skew(-46.6deg, 73.2deg) translate(-73.0px, 71.9px);
    filter: hue-rotate(294.9deg) blur(8.9px) saturate(139%);
    opacity: 0.81;
    background: pink;
    text-shadow: 29px 26px 7px magenta, -18px 24px 34px purple, 19px -12px 35px yellow, 18px -1px 48px lime, -8px -7px 15px lime, -15px -16px 18px lime, -16px 11px 9px magenta, 17px 30px 44px magenta, 22px -20px 46px purple, 13px 17px 32px yellow;
  }

  4.1% {
    transform: scale(1.62) rotate(392.0deg) skew(75.2deg, 13.8deg) translate(57.0px, 2.3px);
    filter: hue-rotate(108.9deg) blur(5.4px) saturate(290%);
    opacity: 0.98;
    background: lime;
    text-shadow: 21px -29px 32px yellow, 17px 5px 20px blue, 10px 11px 27px orange, -21px 0px 23px magenta, 11px 27px 29px red, -4px -2px 29px #ff0080, 22px -28px 34px magenta, -26px 20px 18px cyan, -17px -8px 20px orange, -27px 5px 46px yellow;
  }

  4.2% {
    transform: scale(1.16) rotate(-554.9deg) skew(89.3deg, 46.8deg) translate(54.7px, -34.2px);
    filter: hue-rotate(186.1deg) blur(3.1px) saturate(114%);
    opacity: 0.99;
    background: purple;
    text-shadow: -25px 6px 41px magenta, -21px -9px 47px yellow, 5px -5px 37px cyan, 11px -17px 7px yellow, -3px 1px 23px red, 19px 30px 27px yellow, 19px 3px 39px purple, -29px -21px 36px yellow, -8px 15px 41px purple, 25px -27px 7px purple;
  }

  4.3% {
    transform: scale(1.68) rotate(-189.0deg) skew(9.4deg, 80.2deg) translate(32.2px, -61.9px);
    filter: hue-rotate(222.3deg) blur(2.8px) saturate(178%);
    opacity: 0.82;
    background: magenta;
    text-shadow: 29px 21px 28px purple, 9px -18px 20px magenta, 11px 24px 36px purple, 9px -27px 48px lime, -8px 21px 27px lime, 14px 13px 6px yellow, -11px -27px 40px cyan, -30px 0px 35px magenta, -10px -25px 16px orange, 0px 19px 20px yellow;
  }

  4.4% {
    transform: scale(1.53) rotate(233.0deg) skew(53.6deg, 86.3deg) translate(-48.0px, -71.5px);
    filter: hue-rotate(39.3deg) blur(8.6px) saturate(242%);
    opacity: 0.36;
    background: cyan;
    text-shadow: -14px 5px 35px pink, 27px -30px 29px orange, 29px -20px 5px red, -28px -22px 34px purple, -1px 3px 17px red, -15px 10px 7px blue, -26px 30px 44px #ff0080, -28px -1px 22px blue, -1px 20px 44px yellow, -9px 29px 7px red;
  }

  4.5% {
    transform: scale(0.62) rotate(-100.3deg) skew(-8.5deg, 38.4deg) translate(16.9px, 97.5px);
    filter: hue-rotate(274.7deg) blur(5.3px) saturate(188%);
    opacity: 0.93;
    background: cyan;
    text-shadow: -2px 9px 31px yellow, 25px -16px 26px purple, 21px 14px 35px red, -9px 15px 24px #ff0080, 7px 4px 48px yellow, 26px -27px 48px red, 9px 15px 29px purple, -9px -2px 48px yellow, -13px -19px 19px purple, -13px 9px 15px lime;
  }

  4.6% {
    transform: scale(1.12) rotate(313.0deg) skew(25.2deg, 43.7deg) translate(-8.5px, 64.3px);
    filter: hue-rotate(191.1deg) blur(0.7px) saturate(237%);
    opacity: 0.62;
    background: purple;
    text-shadow: 18px -3px 29px purple, -11px -6px 33px blue, -19px -12px 6px blue, -12px 0px 33px pink, -8px 6px 39px magenta, -29px 28px 31px purple, -24px -19px 18px purple, -14px -12px 16px red, -9px 19px 21px yellow, -13px -28px 27px yellow;
  }

  4.7% {
    transform: scale(1.96) rotate(385.1deg) skew(-44.9deg, 12.9deg) translate(-99.2px, 80.1px);
    filter: hue-rotate(229.1deg) blur(7.6px) saturate(265%);
    opacity: 0.48;
    background: #ff0080;
    text-shadow: 7px -9px 39px red, 22px 18px 48px #ff0080, 14px -11px 45px cyan, 14px 21px 14px magenta, -1px 28px 14px red, -15px -3px 34px pink, -3px -4px 13px orange, 10px -9px 26px red, 9px -29px 27px #ff0080, -24px 19px 45px #ff0080;
  }

  4.8% {
    transform: scale(1.92) rotate(-157.6deg) skew(61.8deg, 82.5deg) translate(-11.6px, 13.3px);
    filter: hue-rotate(246.1deg) blur(4.1px) saturate(93%);
    opacity: 0.91;
    background: yellow;
    text-shadow: -10px -10px 24px magenta, -17px 27px 42px lime, -13px 16px 14px orange, 11px -29px 7px purple, 20px 3px 32px purple, -15px -30px 22px magenta, 9px -8px 44px orange, 18px -5px 18px pink, 10px -15px 33px red, 0px -9px 48px pink;
  }

  4.9% {
    transform: scale(1.78) rotate(625.1deg) skew(24.7deg, -15.3deg) translate(10.1px, -72.6px);
    filter: hue-rotate(321.3deg) blur(0.3px) saturate(193%);
    opacity: 0.81;
    background: pink;
    text-shadow: 11px -20px 9px red, 19px -25px 49px magenta, -27px -29px 15px yellow, -26px 3px 15px lime, 23px -17px 27px red, -3px -10px 24px pink, 17px 5px 50px magenta, -21px -1px 38px cyan, 5px 13px 33px lime, 5px -21px 35px orange;
  }

  5.0% {
    transform: scale(0.6) rotate(-21.2deg) skew(81.7deg, 78.8deg) translate(52.4px, 27.1px);
    filter: hue-rotate(183.2deg) blur(9.2px) saturate(76%);
    opacity: 0.46;
    background: #ff0080;
    text-shadow: 29px -4px 22px red, -19px -19px 31px pink, -2px -27px 20px red, -17px 21px 50px red, -1px 18px 36px magenta, 23px -5px 8px #ff0080, 23px 16px 11px magenta, -4px -25px 10px orange, -27px -22px 20px yellow, -28px 21px 47px lime;
  }

  5.1% {
    transform: scale(1.05) rotate(-270.2deg) skew(36.4deg, -57.7deg) translate(10.1px, -90.8px);
    filter: hue-rotate(340.2deg) blur(5.2px) saturate(274%);
    opacity: 0.86;
    background: cyan;
    text-shadow: 11px -17px 46px cyan, 27px 6px 39px cyan, 29px -21px 27px orange, 9px 2px 6px lime, -7px -30px 42px blue, 7px 30px 11px magenta, -20px 11px 22px lime, 19px -1px 14px magenta, 21px 28px 6px #ff0080, 8px -18px 31px purple;
  }

  5.2% {
    transform: scale(1.21) rotate(291.1deg) skew(3.8deg, 40.4deg) translate(10.8px, -70.0px);
    filter: hue-rotate(87.0deg) blur(4.6px) saturate(175%);
    opacity: 0.96;
    background: yellow;
    text-shadow: 10px -13px 19px magenta, 27px -6px 42px magenta, 17px 23px 26px orange, 1px 28px 28px lime, -30px 10px 50px blue, -11px 29px 50px blue, 0px 16px 42px pink, -13px -9px 6px pink, -11px -26px 47px lime, 1px 28px 37px yellow;
  }

  5.3% {
    transform: scale(1.62) rotate(-344.6deg) skew(35.4deg, -71.6deg) translate(-88.5px, -5.1px);
    filter: hue-rotate(72.4deg) blur(4.5px) saturate(188%);
    opacity: 0.64;
    background: #ff0080;
    text-shadow: -18px -5px 28px blue, -2px 9px 37px pink, 28px 23px 45px orange, -14px -17px 7px yellow, -26px -13px 42px lime, -22px -8px 15px purple, 3px 2px 14px yellow, 13px 27px 11px red, -26px -26px 25px #ff0080, -16px 29px 49px purple;
  }

  5.4% {
    transform: scale(0.6) rotate(-113.9deg) skew(-15.4deg, -58.6deg) translate(24.7px, 21.3px);
    filter: hue-rotate(139.9deg) blur(9.9px) saturate(227%);
    opacity: 0.69;
    background: purple;
    text-shadow: -9px -5px 27px #ff0080, -6px 0px 22px blue, 28px 21px 32px #ff0080, 1px -20px 15px yellow, 10px -7px 23px lime, 11px 15px 5px purple, -4px 30px 46px lime, -20px -4px 33px cyan, 21px 3px 23px pink, 3px -14px 9px purple;
  }

  5.5% {
    transform: scale(0.65) rotate(498.9deg) skew(16.7deg, 10.2deg) translate(27.6px, 78.0px);
    filter: hue-rotate(323.1deg) blur(0.3px) saturate(183%);
    opacity: 0.72;
    background: magenta;
    text-shadow: 27px -28px 17px yellow, -17px 11px 14px lime, -12px -19px 30px magenta, 11px -14px 45px cyan, 24px -1px 44px blue, -11px 2px 47px lime, -1px 13px 49px orange, -24px 22px 11px magenta, 4px -27px 9px magenta, 6px 16px 7px purple;
  }

  5.6% {
    transform: scale(1.61) rotate(270.1deg) skew(-41.4deg, -12.6deg) translate(-67.9px, 99.8px);
    filter: hue-rotate(85.1deg) blur(0.2px) saturate(175%);
    opacity: 0.99;
    background: red;
    text-shadow: 16px -13px 40px #ff0080, 3px 5px 15px lime, 27px -4px 44px purple, -6px 6px 8px red, -22px -1px 42px magenta, -19px 0px 29px lime, 21px -4px 40px lime, -25px 5px 14px red, 22px -29px 38px blue, 27px 25px 34px #ff0080;
  }

  5.7% {
    transform: scale(1.67) rotate(46.0deg) skew(-79.2deg, 41.3deg) translate(-38.8px, -51.3px);
    filter: hue-rotate(118.9deg) blur(6.7px) saturate(284%);
    opacity: 0.61;
    background: #ff0080;
    text-shadow: -3px -12px 12px lime, 24px 28px 8px orange, 21px 13px 36px blue, 10px -2px 42px cyan, -25px -12px 10px yellow, 29px 17px 20px pink, -4px 11px 18px lime, 10px -13px 17px yellow, -21px -16px 10px pink, -6px 20px 31px cyan;
  }

  5.8% {
    transform: scale(1.33) rotate(436.5deg) skew(-24.0deg, -56.4deg) translate(-41.8px, -89.6px);
    filter: hue-rotate(251.1deg) blur(9.9px) saturate(111%);
    opacity: 0.31;
    background: blue;
    text-shadow: 11px -8px 41px lime, 30px 18px 45px #ff0080, 2px -29px 49px red, 6px -8px 7px pink, 18px -25px 33px yellow, 0px 8px 28px lime, -13px 12px 42px red, 10px 9px 5px cyan, -6px 23px 14px red, -11px -19px 28px cyan;
  }

  5.9% {
    transform: scale(0.68) rotate(-197.4deg) skew(15.4deg, -76.9deg) translate(-18.8px, 70.6px);
    filter: hue-rotate(128.4deg) blur(3.4px) saturate(280%);
    opacity: 0.73;
    background: blue;
    text-shadow: -4px 18px 32px orange, 21px -23px 19px purple, 12px -12px 8px orange, -27px -8px 35px pink, -2px -16px 12px pink, -22px 12px 38px cyan, -22px -1px 40px blue, 25px -18px 32px purple, -17px 22px 42px #ff0080, 8px -30px 18px magenta;
  }

  6.0% {
    transform: scale(1.04) rotate(-377.7deg) skew(-86.9deg, -54.1deg) translate(17.7px, 82.1px);
    filter: hue-rotate(335.1deg) blur(6.9px) saturate(184%);
    opacity: 0.41;
    background: magenta;
    text-shadow: -29px 23px 19px blue, 8px 30px 31px cyan, 28px 10px 6px magenta, -17px -26px 15px orange, -29px 12px 11px red, 25px -28px 24px red, -14px 27px 12px lime, 21px 20px 9px cyan, 27px -22px 24px magenta, 22px 23px 22px red;
  }

  6.1% {
    transform: scale(1.69) rotate(-30.1deg) skew(-53.7deg, -7.3deg) translate(-69.2px, -70.0px);
    filter: hue-rotate(38.0deg) blur(1.5px) saturate(199%);
    opacity: 0.57;
    background: yellow;
    text-shadow: 11px 24px 20px orange, -7px 22px 24px purple, 0px -21px 14px yellow, 18px -17px 9px blue, -4px -28px 22px lime, 6px 13px 17px cyan, -6px -9px 23px magenta, 15px 5px 15px cyan, 21px 25px 34px orange, 17px -7px 5px pink;
  }

  6.2% {
    transform: scale(1.46) rotate(-516.2deg) skew(65.1deg, 38.5deg) translate(79.6px, -51.5px);
    filter: hue-rotate(341.2deg) blur(7.2px) saturate(280%);
    opacity: 0.93;
    background: #ff0080;
    text-shadow: -13px -11px 22px blue, 11px 21px 28px pink, 25px 20px 7px cyan, -26px 28px 25px magenta, -1px 30px 7px magenta, -10px 17px 43px pink, -17px -20px 32px pink, 9px 17px 31px cyan, 20px -1px 21px red, -30px -13px 23px pink;
  }

  6.3% {
    transform: scale(0.6) rotate(-183.5deg) skew(-23.4deg, -6.4deg) translate(41.7px, 54.5px);
    filter: hue-rotate(40.0deg) blur(0.0px) saturate(242%);
    opacity: 0.78;
    background: red;
    text-shadow: -9px 16px 20px blue, -23px -23px 10px #ff0080, -12px -27px 27px cyan, 14px 22px 38px yellow, -20px -3px 13px #ff0080, 30px -21px 10px #ff0080, 11px 19px 50px magenta, -15px 26px 36px blue, -8px 3px 11px purple, -15px 11px 5px magenta;
  }

  6.4% {
    transform: scale(0.51) rotate(358.7deg) skew(-39.9deg, 35.7deg) translate(84.2px, 92.4px);
    filter: hue-rotate(59.6deg) blur(6.6px) saturate(195%);
    opacity: 0.77;
    background: pink;
    text-shadow: -16px -14px 17px cyan, 2px -20px 44px red, -18px 9px 34px red, -23px 15px 28px #ff0080, 14px 21px 16px lime, 3px -20px 28px red, -29px 8px 42px #ff0080, 20px -26px 46px cyan, 14px 21px 10px orange, 23px -3px 25px pink;
  }

  6.5% {
    transform: scale(1.98) rotate(-555.0deg) skew(-89.0deg, 70.3deg) translate(-34.7px, 25.9px);
    filter: hue-rotate(30.0deg) blur(2.6px) saturate(57%);
    opacity: 0.32;
    background: pink;
    text-shadow: 14px -6px 20px #ff0080, 21px 12px 42px #ff0080, 24px 20px 44px lime, 7px 4px 46px lime, -11px -7px 25px orange, 29px 20px 39px orange, -7px -14px 25px lime, -21px -7px 31px lime, -14px 4px 30px yellow, -14px -19px 7px cyan;
  }

  6.6% {
    transform: scale(1.89) rotate(224.1deg) skew(-44.3deg, 72.2deg) translate(29.3px, -31.3px);
    filter: hue-rotate(335.0deg) blur(6.6px) saturate(187%);
    opacity: 0.48;
    background: magenta;
    text-shadow: 12px -20px 20px red, -2px 2px 49px orange, -25px -16px 36px magenta, 12px -28px 46px red, -15px 7px 38px orange, -16px 8px 12px pink, -30px -14px 39px lime, 1px 20px 7px pink, -26px -14px 16px lime, -29px 10px 34px purple;
  }

  6.7% {
    transform: scale(1.24) rotate(554.2deg) skew(22.2deg, 8.0deg) translate(31.7px, -79.6px);
    filter: hue-rotate(151.6deg) blur(5.5px) saturate(137%);
    opacity: 0.52;
    background: purple;
    text-shadow: 20px -10px 33px yellow, -5px -2px 41px magenta, -15px -15px 34px purple, 11px -15px 5px red, -25px 12px 43px orange, 26px -22px 5px lime, -15px -13px 28px magenta, -22px -16px 50px #ff0080, -11px 0px 12px blue, 23px 9px 7px red;
  }

  6.8% {
    transform: scale(1.18) rotate(-35.7deg) skew(-17.4deg, 57.4deg) translate(-70.8px, -88.0px);
    filter: hue-rotate(355.1deg) blur(3.2px) saturate(155%);
    opacity: 0.83;
    background: yellow;
    text-shadow: 25px 27px 35px cyan, 4px -4px 8px red, -18px 1px 19px yellow, -12px 8px 32px blue, -1px -12px 43px cyan, 1px 21px 48px cyan, -16px -4px 46px red, -28px 11px 26px orange, 24px -2px 16px red, 9px -22px 48px orange;
  }

  6.9% {
    transform: scale(1.06) rotate(517.6deg) skew(-83.9deg, -40.5deg) translate(81.6px, 53.9px);
    filter: hue-rotate(84.5deg) blur(4.7px) saturate(282%);
    opacity: 0.53;
    background: #ff0080;
    text-shadow: -1px 10px 40px magenta, 0px -20px 28px magenta, -30px -3px 11px yellow, -14px 9px 8px orange, -26px -21px 15px lime, 17px 23px 11px pink, 13px 18px 6px yellow, -18px 24px 31px lime, 10px 19px 42px yellow, -24px 8px 25px blue;
  }

  7.0% {
    transform: scale(0.51) rotate(439.2deg) skew(4.3deg, 71.9deg) translate(-78.6px, -22.7px);
    filter: hue-rotate(130.0deg) blur(1.4px) saturate(142%);
    opacity: 0.7;
    background: lime;
    text-shadow: 16px 6px 28px cyan, -24px 14px 6px purple, -22px 5px 8px orange, 18px -11px 21px red, 6px 11px 30px blue, -5px 5px 22px red, 30px -13px 23px magenta, -25px 14px 19px yellow, -2px -23px 18px red, 4px 11px 12px lime;
  }

  7.1% {
    transform: scale(1.5) rotate(-215.2deg) skew(14.8deg, 85.3deg) translate(61.4px, -6.1px);
    filter: hue-rotate(115.6deg) blur(2.4px) saturate(255%);
    opacity: 0.53;
    background: pink;
    text-shadow: -27px -4px 20px pink, -26px 27px 35px blue, -8px 15px 40px cyan, -26px -8px 9px orange, -7px 14px 25px pink, 0px -28px 30px purple, -16px 19px 34px #ff0080, -9px 21px 45px yellow, -21px -21px 41px purple, 13px 11px 8px pink;
  }

  7.2% {
    transform: scale(0.71) rotate(-351.9deg) skew(21.4deg, -35.6deg) translate(76.8px, -51.9px);
    filter: hue-rotate(82.7deg) blur(5.9px) saturate(63%);
    opacity: 0.38;
    background: #ff0080;
    text-shadow: 17px -25px 19px blue, -29px -13px 14px #ff0080, 10px 13px 8px lime, 19px -13px 35px magenta, 15px -30px 12px purple, 28px 30px 8px red, 20px 2px 13px blue, -15px -26px 19px red, -7px 22px 50px purple, -17px -10px 31px orange;
  }

  7.3% {
    transform: scale(1.58) rotate(-689.2deg) skew(-87.0deg, 8.9deg) translate(-65.9px, -45.3px);
    filter: hue-rotate(289.8deg) blur(6.6px) saturate(146%);
    opacity: 0.78;
    background: orange;
    text-shadow: 24px 27px 14px yellow, -2px 23px 46px orange, -10px 16px 34px blue, 23px -18px 15px orange, 5px 24px 32px yellow, 17px -10px 17px cyan, 1px 23px 23px cyan, 29px 16px 23px yellow, 0px 18px 35px cyan, 0px 26px 30px blue;
  }

  7.4% {
    transform: scale(1.34) rotate(-143.3deg) skew(33.6deg, 40.9deg) translate(84.2px, -37.8px);
    filter: hue-rotate(159.1deg) blur(9.3px) saturate(235%);
    opacity: 0.3;
    background: yellow;
    text-shadow: 6px 16px 48px purple, -29px 14px 41px cyan, 21px 9px 50px yellow, 30px -10px 28px purple, 1px -19px 29px purple, 21px -21px 45px lime, -12px -2px 33px red, -2px -16px 25px yellow, 10px 10px 22px orange, 13px 0px 24px pink;
  }

  7.5% {
    transform: scale(1.65) rotate(-25.1deg) skew(-35.3deg, -59.3deg) translate(96.7px, -5.9px);
    filter: hue-rotate(76.7deg) blur(3.7px) saturate(123%);
    opacity: 0.96;
    background: purple;
    text-shadow: -5px 20px 19px yellow, 8px -2px 8px pink, -16px 23px 32px lime, -7px -7px 25px yellow, -18px 17px 39px red, 23px 1px 18px orange, 6px 10px 39px magenta, -19px -29px 27px lime, 2px 24px 5px red, 8px -8px 14px yellow;
  }

  7.6% {
    transform: scale(1.13) rotate(544.5deg) skew(-85.1deg, -77.1deg) translate(42.5px, 31.0px);
    filter: hue-rotate(6.8deg) blur(1.6px) saturate(71%);
    opacity: 0.95;
    background: pink;
    text-shadow: -21px -2px 5px magenta, -7px -18px 45px red, 24px -24px 33px magenta, 10px -14px 34px pink, 26px 2px 47px cyan, -19px 10px 23px orange, 22px -19px 20px yellow, 8px 26px 34px orange, 30px -6px 20px #ff0080, 8px -11px 38px purple;
  }

  7.7% {
    transform: scale(0.61) rotate(-159.1deg) skew(35.3deg, -78.9deg) translate(75.2px, -96.2px);
    filter: hue-rotate(224.1deg) blur(6.4px) saturate(169%);
    opacity: 0.76;
    background: cyan;
    text-shadow: 27px -2px 33px magenta, 5px -17px 9px #ff0080, -5px -28px 35px red, 26px -1px 39px blue, 20px -14px 45px red, 23px 6px 31px blue, 2px -17px 40px orange, -6px 29px 19px yellow, 17px 15px 30px lime, -20px -6px 35px #ff0080;
  }

  7.8% {
    transform: scale(0.82) rotate(-178.8deg) skew(2.8deg, 9.9deg) translate(-65.3px, -24.0px);
    filter: hue-rotate(14.7deg) blur(4.9px) saturate(86%);
    opacity: 0.76;
    background: orange;
    text-shadow: -5px -25px 36px orange, 16px -5px 25px lime, -28px 16px 37px red, -12px -30px 10px magenta, -26px -1px 36px cyan, -25px 20px 11px lime, -11px 11px 14px purple, -10px 2px 9px purple, 16px -6px 29px #ff0080, -4px -4px 13px #ff0080;
  }

  7.9% {
    transform: scale(0.98) rotate(650.7deg) skew(-80.1deg, -53.5deg) translate(-98.4px, -17.3px);
    filter: hue-rotate(319.0deg) blur(6.7px) saturate(216%);
    opacity: 0.86;
    background: blue;
    text-shadow: 2px 20px 47px pink, 1px 19px 40px orange, 4px 15px 5px purple, -25px -15px 13px cyan, 9px -4px 35px blue, -20px -8px 32px lime, -22px -13px 10px pink, -13px 12px 6px lime, -12px -5px 13px yellow, 12px 19px 10px pink;
  }

  8.0% {
    transform: scale(1.97) rotate(-631.1deg) skew(14.2deg, 35.1deg) translate(-96.6px, 57.0px);
    filter: hue-rotate(173.6deg) blur(0.2px) saturate(74%);
    opacity: 0.62;
    background: yellow;
    text-shadow: -16px 10px 48px red, 3px 24px 34px lime, -29px 0px 46px magenta, 19px 22px 5px purple, -9px -19px 31px yellow, -24px -24px 17px lime, 30px -16px 49px blue, -6px -4px 17px orange, 6px -12px 11px pink, 20px -2px 42px pink;
  }

  8.1% {
    transform: scale(1.82) rotate(-470.9deg) skew(60.5deg, 71.2deg) translate(-47.7px, -14.8px);
    filter: hue-rotate(139.6deg) blur(2.4px) saturate(269%);
    opacity: 0.78;
    background: blue;
    text-shadow: -27px -29px 25px #ff0080, -28px 23px 31px #ff0080, 22px -9px 20px yellow, -26px 26px 43px #ff0080, 13px 19px 28px #ff0080, 21px 18px 24px magenta, -15px -9px 45px yellow, -30px -26px 14px yellow, -19px -1px 6px pink, 26px 16px 14px lime;
  }

  8.2% {
    transform: scale(1.61) rotate(-459.1deg) skew(-21.0deg, -46.0deg) translate(14.9px, -17.2px);
    filter: hue-rotate(173.9deg) blur(6.2px) saturate(104%);
    opacity: 0.6;
    background: pink;
    text-shadow: -25px 0px 32px blue, 19px 26px 11px #ff0080, -12px -4px 8px cyan, -4px 26px 38px magenta, 24px -28px 49px yellow, -22px -3px 28px red, 26px -4px 21px magenta, 21px -1px 15px red, 0px 12px 15px magenta, -6px 4px 45px pink;
  }

  8.3% {
    transform: scale(0.7) rotate(207.3deg) skew(5.4deg, -88.2deg) translate(60.4px, 93.7px);
    filter: hue-rotate(283.2deg) blur(9.5px) saturate(276%);
    opacity: 0.79;
    background: blue;
    text-shadow: 8px 21px 32px blue, 3px -18px 7px orange, 9px 10px 24px pink, 4px -6px 17px purple, -26px -5px 14px yellow, 24px 6px 14px blue, 24px -2px 37px pink, 0px 20px 47px cyan, -23px 6px 38px blue, 20px 25px 16px pink;
  }

  8.4% {
    transform: scale(0.52) rotate(-12.8deg) skew(-76.9deg, -29.9deg) translate(10.3px, -96.5px);
    filter: hue-rotate(352.0deg) blur(4.9px) saturate(288%);
    opacity: 0.34;
    background: cyan;
    text-shadow: 18px 14px 40px #ff0080, -21px 30px 21px #ff0080, -11px 14px 32px blue, 18px 19px 33px lime, -16px -21px 5px cyan, 15px 21px 7px yellow, 8px 13px 38px pink, 15px 2px 25px orange, -1px 16px 11px purple, -8px 14px 41px cyan;
  }

  8.5% {
    transform: scale(1.43) rotate(397.5deg) skew(-23.6deg, -34.5deg) translate(-38.6px, -78.7px);
    filter: hue-rotate(204.0deg) blur(7.1px) saturate(224%);
    opacity: 0.5;
    background: yellow;
    text-shadow: -18px 21px 48px magenta, -9px -29px 18px purple, 21px 24px 7px #ff0080, 19px 26px 28px lime, -25px -19px 25px blue, -6px -12px 29px red, 0px 3px 20px blue, 20px 24px 29px purple, 16px -24px 32px #ff0080, -22px 24px 11px pink;
  }

  8.6% {
    transform: scale(1.72) rotate(-551.5deg) skew(-23.8deg, -25.5deg) translate(62.1px, -83.3px);
    filter: hue-rotate(174.6deg) blur(7.1px) saturate(124%);
    opacity: 0.34;
    background: cyan;
    text-shadow: 16px 15px 5px purple, 29px 4px 13px blue, 4px -11px 20px #ff0080, -2px 13px 11px blue, 19px -27px 17px orange, -21px 23px 45px purple, -25px 11px 41px #ff0080, 0px 23px 25px pink, -27px -14px 13px #ff0080, -6px 28px 29px orange;
  }

  8.7% {
    transform: scale(1.29) rotate(543.0deg) skew(44.8deg, 31.3deg) translate(-50.4px, -99.5px);
    filter: hue-rotate(146.1deg) blur(5.5px) saturate(254%);
    opacity: 0.35;
    background: pink;
    text-shadow: -4px 29px 38px orange, -15px 15px 26px yellow, 25px -27px 50px orange, -26px 4px 31px #ff0080, 12px 16px 31px blue, -18px -20px 31px red, -27px -2px 37px magenta, -28px 10px 20px pink, -28px 17px 25px lime, 8px 4px 37px lime;
  }

  8.8% {
    transform: scale(0.55) rotate(587.7deg) skew(-55.2deg, -50.8deg) translate(-13.9px, -30.4px);
    filter: hue-rotate(47.6deg) blur(6.4px) saturate(288%);
    opacity: 0.99;
    background: lime;
    text-shadow: -15px 26px 13px orange, 4px 9px 22px red, -15px 2px 39px orange, -27px 16px 27px #ff0080, 28px -29px 31px orange, -2px -5px 32px red, -3px -9px 33px purple, 1px -23px 10px orange, 17px -4px 35px yellow, 18px -29px 22px blue;
  }

  8.9% {
    transform: scale(1.48) rotate(-633.4deg) skew(74.7deg, 44.4deg) translate(-36.1px, -36.6px);
    filter: hue-rotate(290.5deg) blur(3.7px) saturate(233%);
    opacity: 0.95;
    background: magenta;
    text-shadow: -15px -26px 10px orange, 22px -8px 48px red, -6px 16px 32px #ff0080, 3px -18px 26px purple, 28px 5px 39px #ff0080, 0px -19px 43px #ff0080, 26px 16px 20px magenta, 11px 12px 38px #ff0080, -17px -12px 6px lime, 23px 1px 18px purple;
  }

  9.0% {
    transform: scale(1.53) rotate(-214.3deg) skew(-40.4deg, -74.0deg) translate(-85.0px, 16.3px);
    filter: hue-rotate(228.7deg) blur(7.3px) saturate(141%);
    opacity: 0.66;
    background: cyan;
    text-shadow: -16px -22px 37px orange, -13px 13px 43px #ff0080, 30px 19px 8px cyan, -5px 22px 43px pink, -10px 22px 10px purple, 18px 3px 16px yellow, 4px 10px 13px magenta, -1px -12px 38px pink, -9px -29px 22px orange, 18px -25px 32px orange;
  }

  9.1% {
    transform: scale(1.45) rotate(-182.7deg) skew(-50.5deg, -68.0deg) translate(-29.7px, -1.7px);
    filter: hue-rotate(303.2deg) blur(7.0px) saturate(159%);
    opacity: 0.95;
    background: lime;
    text-shadow: 10px 13px 13px #ff0080, 2px -28px 14px pink, -11px 1px 46px lime, -22px -5px 12px orange, 25px 24px 8px red, -6px 11px 5px magenta, -8px 23px 10px red, 0px -26px 12px lime, 2px 22px 42px magenta, -1px -18px 35px yellow;
  }

  9.2% {
    transform: scale(1.76) rotate(-233.8deg) skew(57.6deg, -12.3deg) translate(-94.7px, -10.6px);
    filter: hue-rotate(322.7deg) blur(8.5px) saturate(162%);
    opacity: 0.9;
    background: cyan;
    text-shadow: -8px -15px 26px pink, 6px 8px 17px #ff0080, 0px -20px 34px orange, -6px 6px 27px red, -5px -21px 18px lime, 9px -8px 25px #ff0080, 27px 5px 18px cyan, 27px 3px 7px purple, -14px -8px 11px cyan, 16px 0px 5px #ff0080;
  }

  9.3% {
    transform: scale(1.52) rotate(-5.0deg) skew(1.5deg, 59.9deg) translate(38.6px, -20.1px);
    filter: hue-rotate(203.3deg) blur(8.0px) saturate(237%);
    opacity: 0.68;
    background: purple;
    text-shadow: -19px -24px 46px blue, -8px -25px 45px yellow, 27px 21px 5px lime, -4px -16px 17px lime, -1px -2px 37px red, -25px 8px 19px pink, 2px -13px 26px lime, -26px -25px 38px cyan, -10px -12px 48px pink, 3px -18px 48px pink;
  }

  9.4% {
    transform: scale(1.83) rotate(-498.2deg) skew(-36.3deg, -2.8deg) translate(24.2px, -29.1px);
    filter: hue-rotate(193.8deg) blur(5.0px) saturate(120%);
    opacity: 0.5;
    background: yellow;
    text-shadow: -25px -13px 41px red, 24px 23px 15px blue, 11px 5px 14px #ff0080, -9px 4px 29px lime, -12px 20px 24px blue, -2px 1px 30px purple, -15px 27px 29px lime, 24px 28px 5px pink, -29px 11px 33px blue, -12px 30px 29px pink;
  }

  9.5% {
    transform: scale(0.62) rotate(-498.5deg) skew(17.9deg, -57.3deg) translate(-55.2px, -97.6px);
    filter: hue-rotate(31.5deg) blur(1.4px) saturate(264%);
    opacity: 0.7;
    background: lime;
    text-shadow: 20px 2px 20px #ff0080, -27px 29px 39px orange, -19px 19px 5px lime, -10px -30px 6px orange, -5px -3px 43px yellow, -14px -19px 46px lime, -29px 3px 13px pink, -10px -18px 18px pink, -10px 0px 40px cyan, 10px -16px 5px magenta;
  }

  9.6% {
    transform: scale(1.31) rotate(604.8deg) skew(17.1deg, -47.3deg) translate(-69.7px, 92.6px);
    filter: hue-rotate(174.4deg) blur(6.9px) saturate(239%);
    opacity: 0.66;
    background: #ff0080;
    text-shadow: 29px -18px 22px cyan, 13px 19px 49px cyan, 15px 26px 26px cyan, -30px 27px 29px red, 28px -5px 37px pink, -27px 5px 23px blue, 13px -3px 6px #ff0080, -24px -17px 41px cyan, -16px 6px 15px lime, 26px 6px 11px lime;
  }

  9.7% {
    transform: scale(0.68) rotate(685.8deg) skew(88.3deg, 78.8deg) translate(18.3px, -61.4px);
    filter: hue-rotate(237.6deg) blur(5.5px) saturate(182%);
    opacity: 0.56;
    background: red;
    text-shadow: -28px 1px 32px orange, 0px -26px 30px orange, 2px -26px 27px #ff0080, 10px -18px 20px cyan, -10px -29px 43px blue, -14px -12px 19px blue, 17px -1px 21px blue, 0px 29px 46px #ff0080, 2px 29px 21px blue, 28px 3px 36px blue;
  }

  9.8% {
    transform: scale(1.33) rotate(262.6deg) skew(17.9deg, 77.2deg) translate(-74.1px, 5.0px);
    filter: hue-rotate(222.8deg) blur(1.8px) saturate(182%);
    opacity: 0.68;
    background: cyan;
    text-shadow: -6px 13px 10px pink, -10px -14px 44px purple, -17px -2px 11px cyan, 24px 6px 5px magenta, 15px 16px 45px red, 0px -30px 10px yellow, 19px 18px 5px pink, 11px -7px 39px red, -17px -5px 6px blue, -30px 18px 39px purple;
  }

  9.9% {
    transform: scale(0.67) rotate(702.0deg) skew(-81.4deg, 10.9deg) translate(0.6px, 94.8px);
    filter: hue-rotate(149.9deg) blur(5.7px) saturate(66%);
    opacity: 0.79;
    background: cyan;
    text-shadow: -20px -3px 26px blue, -11px -30px 38px purple, 21px 18px 32px magenta, 24px 0px 7px magenta, -26px -28px 43px magenta, -16px 22px 19px purple, 29px -16px 47px lime, -4px 2px 13px blue, 16px -12px 41px pink, 21px 18px 7px blue;
  }

  10.0% {
    transform: scale(1.37) rotate(-98.2deg) skew(21.7deg, -8.4deg) translate(-60.3px, -9.3px);
    filter: hue-rotate(126.8deg) blur(6.5px) saturate(258%);
    opacity: 0.41;
    background: blue;
    text-shadow: -29px -14px 27px lime, -19px 12px 50px orange, 9px 9px 11px cyan, 16px 29px 8px pink, -6px -8px 15px #ff0080, -11px 21px 8px #ff0080, 23px 27px 49px red, 7px -10px 16px orange, -16px 11px 13px cyan, 7px -22px 12px purple;
  }

  10.1% {
    transform: scale(0.98) rotate(-249.4deg) skew(-10.5deg, 28.8deg) translate(-69.1px, -91.6px);
    filter: hue-rotate(60.6deg) blur(7.8px) saturate(281%);
    opacity: 0.73;
    background: pink;
    text-shadow: 0px -13px 36px purple, -26px 13px 50px purple, 4px -23px 16px cyan, 17px -12px 23px #ff0080, 29px -21px 39px pink, -11px 3px 43px purple, 24px -17px 30px yellow, 28px 0px 12px blue, 27px -20px 11px purple, 8px 15px 13px orange;
  }

  10.2% {
    transform: scale(1.9) rotate(-473.2deg) skew(-24.2deg, -21.3deg) translate(-23.7px, -78.9px);
    filter: hue-rotate(207.6deg) blur(1.4px) saturate(132%);
    opacity: 0.45;
    background: #ff0080;
    text-shadow: 20px -5px 39px purple, 25px 24px 9px pink, 22px -22px 35px #ff0080, 28px -21px 38px purple, -20px 5px 22px yellow, -6px 4px 12px magenta, 2px 20px 16px cyan, -24px 0px 36px lime, 15px -4px 50px blue, 28px -15px 31px cyan;
  }

  10.3% {
    transform: scale(0.8) rotate(240.5deg) skew(-72.3deg, 13.4deg) translate(66.0px, 30.6px);
    filter: hue-rotate(272.2deg) blur(2.5px) saturate(94%);
    opacity: 0.55;
    background: pink;
    text-shadow: 8px -16px 36px cyan, 28px -14px 19px lime, 15px -3px 40px blue, -27px 17px 34px #ff0080, 3px -29px 47px yellow, -26px 19px 44px pink, -25px 0px 48px blue, -19px 20px 24px red, -4px -9px 14px yellow, -26px -1px 11px magenta;
  }

  10.4% {
    transform: scale(1.73) rotate(-485.2deg) skew(-50.7deg, 83.2deg) translate(21.5px, -86.5px);
    filter: hue-rotate(186.2deg) blur(2.5px) saturate(62%);
    opacity: 0.6;
    background: purple;
    text-shadow: -11px -3px 50px red, -4px -28px 40px purple, 6px -28px 18px pink, 30px 13px 6px yellow, -17px 20px 15px purple, 10px -20px 33px cyan, 29px 27px 46px purple, 24px -10px 45px pink, 28px 0px 50px blue, -11px -19px 16px orange;
  }

  10.5% {
    transform: scale(1.91) rotate(13.4deg) skew(-78.9deg, -45.1deg) translate(39.4px, -3.6px);
    filter: hue-rotate(122.0deg) blur(7.6px) saturate(233%);
    opacity: 0.82;
    background: cyan;
    text-shadow: 0px 23px 40px blue, 21px -10px 22px #ff0080, -15px -14px 48px cyan, -10px -12px 49px #ff0080, -20px 21px 38px blue, -12px 5px 38px blue, -23px -4px 50px orange, -26px -14px 48px yellow, -30px 5px 18px orange, 30px 28px 43px #ff0080;
  }

  10.6% {
    transform: scale(1.89) rotate(15.9deg) skew(47.3deg, 45.3deg) translate(-4.1px, -91.4px);
    filter: hue-rotate(74.7deg) blur(0.8px) saturate(153%);
    opacity: 0.7;
    background: red;
    text-shadow: 19px 17px 39px red, -22px -5px 32px blue, 11px -14px 6px blue, 18px 10px 36px cyan, -28px 4px 43px yellow, 8px 10px 15px blue, -10px -21px 33px purple, 20px -23px 42px purple, -10px 29px 5px pink, 9px -13px 20px purple;
  }

  10.7% {
    transform: scale(1.29) rotate(239.4deg) skew(-42.6deg, -21.3deg) translate(1.2px, 53.5px);
    filter: hue-rotate(351.7deg) blur(4.5px) saturate(296%);
    opacity: 0.47;
    background: pink;
    text-shadow: -29px 17px 47px pink, -26px 28px 49px orange, -12px 10px 49px yellow, 13px -16px 22px #ff0080, 12px -16px 23px magenta, -18px 8px 38px blue, -2px -19px 44px yellow, 20px 10px 28px magenta, 6px 21px 38px magenta, 10px 29px 29px blue;
  }

  10.8% {
    transform: scale(1.43) rotate(-296.6deg) skew(19.7deg, 55.4deg) translate(65.2px, -0.1px);
    filter: hue-rotate(41.8deg) blur(1.7px) saturate(261%);
    opacity: 0.96;
    background: purple;
    text-shadow: -7px 13px 35px lime, -24px 7px 10px blue, -24px -23px 45px orange, -27px 22px 32px orange, -28px -8px 40px magenta, 0px -2px 23px purple, -30px -12px 49px cyan, -26px 19px 29px lime, 15px 1px 31px yellow, 7px -17px 35px magenta;
  }

  10.9% {
    transform: scale(0.63) rotate(628.2deg) skew(26.8deg, -84.8deg) translate(39.7px, 86.5px);
    filter: hue-rotate(123.6deg) blur(7.0px) saturate(257%);
    opacity: 0.79;
    background: yellow;
    text-shadow: 18px 1px 34px red, -5px 0px 38px purple, -29px 25px 28px orange, 24px -27px 49px yellow, -2px -3px 36px red, 30px -20px 15px lime, 21px -29px 38px #ff0080, 11px 9px 38px blue, 5px 1px 20px yellow, 20px 3px 21px purple;
  }

  11.0% {
    transform: scale(1.5) rotate(378.3deg) skew(-39.3deg, -18.2deg) translate(11.0px, -17.3px);
    filter: hue-rotate(303.5deg) blur(5.9px) saturate(208%);
    opacity: 0.7;
    background: orange;
    text-shadow: -1px -11px 6px red, -2px 11px 50px purple, 29px 19px 22px orange, -17px -25px 5px pink, 26px -20px 15px cyan, -4px 15px 45px yellow, -21px 3px 22px orange, -13px 2px 40px lime, -27px -23px 45px purple, 0px 13px 7px purple;
  }

  11.1% {
    transform: scale(1.02) rotate(719.5deg) skew(9.4deg, 24.7deg) translate(-57.9px, 96.1px);
    filter: hue-rotate(21.5deg) blur(3.2px) saturate(209%);
    opacity: 0.33;
    background: magenta;
    text-shadow: -12px 11px 5px #ff0080, 30px -30px 18px pink, -16px -3px 44px red, -23px -8px 7px orange, 29px 12px 19px yellow, 4px -28px 9px blue, 11px 15px 35px purple, -29px -18px 21px blue, 20px -18px 14px blue, 9px -14px 24px magenta;
  }

  11.2% {
    transform: scale(1.18) rotate(-174.5deg) skew(-46.7deg, -75.5deg) translate(-24.8px, 77.3px);
    filter: hue-rotate(180.6deg) blur(9.3px) saturate(188%);
    opacity: 0.6;
    background: magenta;
    text-shadow: -20px -1px 48px orange, 7px 6px 15px cyan, 13px 17px 32px yellow, -13px -11px 50px pink, -17px -13px 14px yellow, -15px -9px 40px #ff0080, -25px -6px 41px magenta, -3px 20px 23px purple, -9px 21px 5px yellow, -1px -25px 32px #ff0080;
  }

  11.3% {
    transform: scale(1.05) rotate(231.1deg) skew(-13.4deg, -13.4deg) translate(31.5px, 52.4px);
    filter: hue-rotate(64.1deg) blur(4.7px) saturate(68%);
    opacity: 0.42;
    background: cyan;
    text-shadow: -26px 18px 24px magenta, -19px -10px 24px magenta, -15px 13px 12px lime, -10px -12px 24px red, 11px -23px 39px orange, -17px -3px 28px cyan, -11px 24px 12px orange, -20px 23px 7px blue, 0px 10px 11px pink, -5px -3px 35px lime;
  }

  11.4% {
    transform: scale(1.2) rotate(-110.6deg) skew(-82.7deg, 41.2deg) translate(83.0px, -55.6px);
    filter: hue-rotate(236.2deg) blur(5.6px) saturate(91%);
    opacity: 0.42;
    background: lime;
    text-shadow: 30px 18px 17px lime, -23px 10px 23px orange, 21px -5px 23px #ff0080, -16px -27px 42px red, 8px -28px 42px blue, -8px 6px 27px red, 18px 11px 50px red, 2px 6px 38px purple, -10px 27px 46px #ff0080, -13px -7px 46px purple;
  }

  11.5% {
    transform: scale(1.68) rotate(648.7deg) skew(-71.4deg, -86.4deg) translate(-76.1px, -30.4px);
    filter: hue-rotate(225.0deg) blur(3.3px) saturate(180%);
    opacity: 0.9;
    background: red;
    text-shadow: 8px -8px 48px #ff0080, -27px 5px 13px red, -5px 9px 37px lime, -26px -15px 10px cyan, 24px 15px 9px blue, -29px -28px 20px blue, 20px 14px 10px #ff0080, -3px -13px 33px yellow, -22px -25px 13px red, 19px 24px 27px orange;
  }

  11.6% {
    transform: scale(0.89) rotate(-593.0deg) skew(-29.5deg, 34.3deg) translate(51.1px, -3.1px);
    filter: hue-rotate(1.9deg) blur(0.2px) saturate(187%);
    opacity: 0.85;
    background: cyan;
    text-shadow: -13px 6px 41px purple, 25px 11px 34px yellow, 20px -11px 25px red, -16px 29px 12px orange, -20px -5px 40px magenta, 7px 21px 37px cyan, 29px 16px 35px pink, -28px 7px 31px blue, 17px -4px 35px orange, 8px -10px 5px red;
  }

  11.7% {
    transform: scale(0.83) rotate(-224.5deg) skew(-0.9deg, 76.9deg) translate(-76.2px, -8.7px);
    filter: hue-rotate(316.9deg) blur(4.8px) saturate(152%);
    opacity: 0.93;
    background: lime;
    text-shadow: -26px -22px 8px pink, -24px -5px 42px pink, 8px -16px 40px orange, -25px 3px 13px blue, -1px -17px 42px #ff0080, 13px -11px 23px red, 8px 16px 29px orange, 2px 30px 40px magenta, -5px 10px 35px lime, 8px 9px 24px yellow;
  }

  11.8% {
    transform: scale(0.69) rotate(409.3deg) skew(19.5deg, -51.4deg) translate(53.3px, -57.8px);
    filter: hue-rotate(356.9deg) blur(6.2px) saturate(106%);
    opacity: 0.89;
    background: #ff0080;
    text-shadow: 12px -12px 30px purple, -10px 3px 29px purple, -17px -29px 32px blue, 6px 19px 43px lime, 2px 21px 11px red, 2px 17px 26px cyan, 1px -2px 48px red, 18px 4px 7px yellow, -28px 18px 22px yellow, -29px -30px 37px cyan;
  }

  11.9% {
    transform: scale(0.8) rotate(-495.9deg) skew(-14.9deg, -36.8deg) translate(-65.4px, -4.0px);
    filter: hue-rotate(247.1deg) blur(7.6px) saturate(54%);
    opacity: 0.42;
    background: magenta;
    text-shadow: -3px -7px 35px magenta, -24px -17px 24px magenta, -24px -9px 11px purple, 17px 15px 24px yellow, -13px -3px 6px yellow, -27px -6px 42px orange, 15px 22px 23px yellow, 28px 13px 24px blue, 3px -1px 42px lime, -22px -1px 11px lime;
  }

  12.0% {
    transform: scale(0.74) rotate(601.2deg) skew(64.2deg, -28.8deg) translate(-60.9px, 16.0px);
    filter: hue-rotate(117.6deg) blur(1.3px) saturate(150%);
    opacity: 0.47;
    background: red;
    text-shadow: -4px 23px 35px magenta, 0px 25px 44px pink, -4px -26px 13px magenta, -1px -5px 42px purple, -29px 23px 42px pink, -2px -3px 48px cyan, 23px -16px 12px yellow, 23px 13px 27px yellow, 1px 14px 48px purple, 27px 25px 44px orange;
  }

  12.1% {
    transform: scale(0.79) rotate(162.1deg) skew(46.0deg, -7.2deg) translate(-8.2px, -66.1px);
    filter: hue-rotate(326.2deg) blur(4.4px) saturate(264%);
    opacity: 0.89;
    background: cyan;
    text-shadow: -13px 3px 19px red, 3px 29px 13px pink, 19px 12px 43px magenta, 21px 14px 33px #ff0080, -27px 19px 39px pink, 2px 13px 6px lime, -5px 21px 27px pink, -2px 8px 39px #ff0080, 12px 18px 6px cyan, 7px 22px 27px orange;
  }

  12.2% {
    transform: scale(1.91) rotate(596.5deg) skew(69.1deg, 73.6deg) translate(-11.7px, 9.5px);
    filter: hue-rotate(250.5deg) blur(3.6px) saturate(207%);
    opacity: 0.94;
    background: purple;
    text-shadow: -25px 3px 13px orange, -2px -1px 49px #ff0080, 5px 16px 32px magenta, 12px -10px 25px lime, 19px 6px 24px lime, 28px -11px 22px lime, -22px -10px 42px #ff0080, -10px -30px 50px yellow, -10px 8px 33px purple, 11px 15px 12px cyan;
  }

  12.3% {
    transform: scale(1.77) rotate(-531.1deg) skew(-20.1deg, 5.7deg) translate(74.9px, -42.9px);
    filter: hue-rotate(311.5deg) blur(1.1px) saturate(260%);
    opacity: 0.92;
    background: yellow;
    text-shadow: -25px 4px 5px cyan, -20px 26px 41px lime, 7px -7px 25px cyan, 5px -21px 13px lime, 30px -6px 29px lime, 12px 16px 25px yellow, 7px 18px 14px orange, -21px -12px 14px magenta, 13px -12px 49px purple, -17px 16px 21px pink;
  }

  12.4% {
    transform: scale(1.23) rotate(-599.9deg) skew(-56.0deg, -17.1deg) translate(91.1px, 37.8px);
    filter: hue-rotate(190.8deg) blur(3.1px) saturate(53%);
    opacity: 0.63;
    background: lime;
    text-shadow: -2px -24px 35px magenta, 4px -28px 5px orange, -9px -20px 24px yellow, 28px 14px 14px pink, -28px -17px 11px cyan, 3px 25px 44px magenta, 11px 7px 9px #ff0080, -15px 7px 38px yellow, -3px 29px 22px #ff0080, 29px 12px 21px pink;
  }

  12.5% {
    transform: scale(1.67) rotate(25.0deg) skew(-89.5deg, 41.1deg) translate(-84.2px, -59.6px);
    filter: hue-rotate(75.8deg) blur(9.2px) saturate(239%);
    opacity: 0.56;
    background: magenta;
    text-shadow: 10px -6px 15px lime, 14px 21px 5px red, -24px -20px 30px blue, 11px -23px 14px cyan, 11px -9px 18px pink, 25px 1px 25px red, 24px 23px 33px #ff0080, -7px -30px 17px purple, -18px 16px 36px red, -9px 5px 30px orange;
  }

  12.6% {
    transform: scale(1.43) rotate(-286.1deg) skew(-40.4deg, -55.9deg) translate(-82.2px, 28.7px);
    filter: hue-rotate(339.7deg) blur(9.6px) saturate(223%);
    opacity: 0.4;
    background: orange;
    text-shadow: 20px 9px 28px blue, 24px 20px 6px #ff0080, 30px -13px 39px pink, 29px 21px 16px pink, -12px -3px 10px orange, -15px -9px 34px magenta, 26px -14px 30px orange, -23px 23px 48px orange, -17px -28px 33px purple, 24px 9px 36px purple;
  }

  12.7% {
    transform: scale(1.18) rotate(630.3deg) skew(41.4deg, -9.2deg) translate(-72.3px, -68.7px);
    filter: hue-rotate(115.0deg) blur(6.2px) saturate(146%);
    opacity: 0.57;
    background: red;
    text-shadow: 27px 3px 23px #ff0080, 29px 20px 8px yellow, -16px 21px 21px red, 26px 2px 30px orange, -8px -2px 25px magenta, -17px -21px 13px #ff0080, -11px -5px 15px blue, -20px -26px 45px orange, 8px -18px 35px red, -8px -15px 18px blue;
  }

  12.8% {
    transform: scale(1.86) rotate(-176.5deg) skew(66.1deg, 59.3deg) translate(60.8px, 65.9px);
    filter: hue-rotate(149.9deg) blur(8.6px) saturate(277%);
    opacity: 0.91;
    background: lime;
    text-shadow: 16px -26px 24px lime, 5px 10px 21px pink, 15px -12px 48px yellow, -15px 26px 26px red, 2px -30px 28px orange, 24px -18px 28px yellow, 6px 1px 30px purple, 4px 13px 20px yellow, 9px 13px 37px pink, -3px 16px 32px yellow;
  }

  12.9% {
    transform: scale(0.57) rotate(-662.9deg) skew(-59.5deg, -78.4deg) translate(-41.2px, -56.4px);
    filter: hue-rotate(132.6deg) blur(8.1px) saturate(268%);
    opacity: 0.42;
    background: red;
    text-shadow: -5px 2px 9px blue, 6px -26px 7px #ff0080, 18px -5px 49px yellow, -9px 8px 15px pink, -23px 4px 38px blue, -7px 22px 50px orange, 9px 21px 37px red, -12px 30px 5px blue, -3px 22px 36px blue, -11px -23px 5px #ff0080;
  }

  13.0% {
    transform: scale(1.95) rotate(474.6deg) skew(8.1deg, -44.3deg) translate(84.3px, 23.1px);
    filter: hue-rotate(214.5deg) blur(0.5px) saturate(101%);
    opacity: 0.58;
    background: purple;
    text-shadow: -8px -3px 43px blue, 17px 5px 47px pink, 10px 26px 5px cyan, 13px -4px 40px orange, 6px 25px 20px yellow, -28px -16px 28px #ff0080, -2px 19px 26px cyan, -8px 22px 41px purple, 29px 25px 8px red, 5px 2px 34px #ff0080;
  }

  13.1% {
    transform: scale(1.82) rotate(285.8deg) skew(28.3deg, -12.8deg) translate(37.6px, -61.2px);
    filter: hue-rotate(164.1deg) blur(4.8px) saturate(112%);
    opacity: 0.43;
    background: pink;
    text-shadow: -8px -26px 6px red, -26px 21px 28px #ff0080, 29px -6px 30px orange, -8px -15px 27px pink, 3px -4px 41px magenta, 5px 1px 39px pink, -20px 27px 27px blue, 29px 17px 5px orange, 30px -29px 6px blue, -11px 18px 14px cyan;
  }

  13.2% {
    transform: scale(1.22) rotate(-711.7deg) skew(4.0deg, -39.3deg) translate(85.8px, 26.4px);
    filter: hue-rotate(204.1deg) blur(1.1px) saturate(75%);
    opacity: 0.4;
    background: pink;
    text-shadow: 10px 8px 17px cyan, -9px 1px 24px #ff0080, 17px 17px 46px blue, -22px 9px 17px lime, -25px -22px 19px red, -24px -28px 14px #ff0080, -5px 24px 7px lime, 26px 5px 23px magenta, -21px 24px 14px pink, 26px -6px 44px #ff0080;
  }

  13.3% {
    transform: scale(1.13) rotate(-66.0deg) skew(14.6deg, -68.1deg) translate(75.9px, -24.0px);
    filter: hue-rotate(84.2deg) blur(9.8px) saturate(269%);
    opacity: 0.89;
    background: #ff0080;
    text-shadow: -14px 14px 32px blue, 27px -16px 33px cyan, -25px -24px 42px magenta, -11px -6px 46px orange, -16px 30px 7px orange, -12px 20px 18px purple, 2px 22px 26px purple, -16px -28px 36px blue, -30px -19px 6px blue, 4px 17px 31px yellow;
  }

  13.4% {
    transform: scale(1.25) rotate(7.7deg) skew(0.5deg, 1.9deg) translate(2.2px, -4.4px);
    filter: hue-rotate(162.0deg) blur(2.9px) saturate(180%);
    opacity: 0.64;
    background: blue;
    text-shadow: -8px 27px 46px lime, -18px -18px 7px #ff0080, -2px 21px 19px orange, -4px -29px 38px blue, 23px 18px 21px purple, -7px 14px 7px magenta, -29px 2px 43px blue, -10px 0px 14px yellow, 21px -2px 12px #ff0080, 2px -20px 27px pink;
  }

  13.5% {
    transform: scale(1.46) rotate(94.9deg) skew(-72.1deg, 86.1deg) translate(-99.7px, -72.7px);
    filter: hue-rotate(232.5deg) blur(2.4px) saturate(229%);
    opacity: 0.66;
    background: yellow;
    text-shadow: 22px 10px 27px yellow, -10px -4px 16px lime, -23px 6px 42px magenta, -19px 9px 15px pink, -25px 23px 19px magenta, -20px 2px 33px cyan, 18px 12px 46px #ff0080, -22px -3px 47px orange, -25px -14px 13px cyan, 13px 24px 6px #ff0080;
  }

  13.6% {
    transform: scale(1.85) rotate(-544.2deg) skew(28.3deg, -34.0deg) translate(-76.3px, 38.1px);
    filter: hue-rotate(300.0deg) blur(3.2px) saturate(103%);
    opacity: 0.85;
    background: blue;
    text-shadow: 22px -24px 39px yellow, 3px 16px 13px pink, 11px -14px 16px red, 8px 26px 27px cyan, -19px 30px 40px magenta, 7px 7px 30px lime, 15px 5px 31px blue, 27px -18px 33px cyan, -15px 27px 36px cyan, 11px -8px 39px #ff0080;
  }

  13.7% {
    transform: scale(0.61) rotate(323.2deg) skew(16.1deg, -35.9deg) translate(15.4px, 99.0px);
    filter: hue-rotate(56.2deg) blur(8.7px) saturate(61%);
    opacity: 0.94;
    background: red;
    text-shadow: -5px 7px 22px lime, 25px -30px 31px #ff0080, 19px 19px 31px yellow, -1px -25px 39px purple, -3px 8px 31px #ff0080, 13px 17px 21px pink, -2px 13px 34px purple, 5px 17px 5px blue, 23px -27px 18px #ff0080, -30px -26px 25px red;
  }

  13.8% {
    transform: scale(1.58) rotate(92.8deg) skew(62.5deg, -46.7deg) translate(-34.0px, 56.5px);
    filter: hue-rotate(14.7deg) blur(8.7px) saturate(152%);
    opacity: 0.91;
    background: blue;
    text-shadow: 29px -2px 22px orange, -11px 0px 49px magenta, -29px 4px 50px magenta, 21px -17px 21px orange, 24px 16px 10px lime, 24px 10px 40px magenta, 26px 25px 18px blue, 27px -19px 6px pink, -28px -22px 18px red, 9px -22px 6px blue;
  }

  13.9% {
    transform: scale(1.47) rotate(175.7deg) skew(61.4deg, -32.1deg) translate(51.5px, 10.5px);
    filter: hue-rotate(135.6deg) blur(3.3px) saturate(69%);
    opacity: 0.46;
    background: blue;
    text-shadow: 18px 23px 33px orange, 18px -26px 44px pink, -30px 29px 29px cyan, 9px 25px 32px pink, 4px -23px 42px cyan, 30px 14px 8px yellow, 16px 14px 38px red, 10px 22px 34px blue, -12px -22px 41px red, -13px 28px 19px yellow;
  }

  14.0% {
    transform: scale(0.51) rotate(677.1deg) skew(-76.6deg, -28.4deg) translate(-42.0px, 36.3px);
    filter: hue-rotate(209.5deg) blur(1.4px) saturate(167%);
    opacity: 0.74;
    background: #ff0080;
    text-shadow: 21px -4px 36px cyan, -3px 7px 25px magenta, 8px 3px 35px yellow, -28px 6px 40px orange, 19px -22px 26px magenta, -2px 8px 50px yellow, -29px -24px 41px purple, 6px 24px 48px orange, 1px -15px 12px lime, -22px -20px 7px orange;
  }

  14.1% {
    transform: scale(1.95) rotate(-165.1deg) skew(37.0deg, 38.4deg) translate(-92.4px, 68.4px);
    filter: hue-rotate(318.3deg) blur(2.5px) saturate(68%);
    opacity: 1.0;
    background: pink;
    text-shadow: -28px -21px 12px red, -22px -10px 16px red, -16px -26px 28px purple, -17px 23px 35px yellow, 2px 5px 15px blue, 7px -22px 8px red, 13px -29px 36px #ff0080, -22px -17px 37px magenta, 26px 18px 30px blue, -16px 3px 29px purple;
  }

  14.2% {
    transform: scale(0.76) rotate(-17.4deg) skew(12.6deg, -45.8deg) translate(0.8px, -16.9px);
    filter: hue-rotate(37.5deg) blur(7.9px) saturate(93%);
    opacity: 0.47;
    background: purple;
    text-shadow: 7px 30px 19px yellow, -18px 2px 30px yellow, -15px 12px 15px pink, -3px -2px 15px lime, 23px -19px 19px red, -27px -11px 44px cyan, -17px -17px 43px lime, -18px 24px 39px lime, -4px -11px 46px purple, 23px -20px 24px blue;
  }

  14.3% {
    transform: scale(1.67) rotate(76.8deg) skew(85.1deg, 31.9deg) translate(96.6px, -53.3px);
    filter: hue-rotate(274.1deg) blur(3.0px) saturate(216%);
    opacity: 0.65;
    background: blue;
    text-shadow: -28px 11px 21px blue, -10px 30px 36px orange, -20px 5px 22px blue, -5px -25px 5px orange, -4px -9px 30px red, 30px -12px 44px cyan, -21px -4px 33px pink, -25px -9px 18px pink, 3px 29px 11px orange, -14px 22px 20px magenta;
  }

  14.4% {
    transform: scale(0.67) rotate(-74.3deg) skew(84.7deg, 54.5deg) translate(22.4px, -53.5px);
    filter: hue-rotate(15.2deg) blur(2.8px) saturate(129%);
    opacity: 0.36;
    background: orange;
    text-shadow: 0px -4px 16px #ff0080, 1px -28px 40px orange, 6px 29px 27px purple, 24px -25px 22px red, -6px 3px 17px blue, 10px -11px 22px yellow, -27px -5px 7px pink, 24px -7px 10px #ff0080, 13px 23px 39px lime, -11px -6px 50px yellow;
  }

  14.5% {
    transform: scale(1.08) rotate(-231.7deg) skew(66.3deg, -70.7deg) translate(-11.6px, 64.1px);
    filter: hue-rotate(235.5deg) blur(2.6px) saturate(87%);
    opacity: 0.94;
    background: lime;
    text-shadow: -1px -28px 39px #ff0080, -1px -9px 45px #ff0080, 8px -15px 36px lime, -9px 11px 27px blue, -1px -8px 43px lime, -13px 26px 47px purple, 17px 2px 33px red, -1px -6px 38px yellow, 24px -9px 7px blue, -23px 16px 29px magenta;
  }

  14.6% {
    transform: scale(1.12) rotate(-333.9deg) skew(-58.6deg, -86.4deg) translate(-68.4px, -10.3px);
    filter: hue-rotate(231.7deg) blur(2.6px) saturate(230%);
    opacity: 0.74;
    background: blue;
    text-shadow: 29px -18px 45px blue, -17px 27px 14px yellow, -3px -8px 15px pink, -27px 10px 50px purple, -30px -26px 29px red, 7px 10px 23px blue, 23px 29px 42px red, -30px -6px 41px red, 8px 13px 45px purple, 23px -8px 19px yellow;
  }

  14.7% {
    transform: scale(1.76) rotate(-477.2deg) skew(11.5deg, 24.3deg) translate(45.1px, -54.0px);
    filter: hue-rotate(335.4deg) blur(2.6px) saturate(242%);
    opacity: 0.88;
    background: red;
    text-shadow: 8px 15px 47px #ff0080, -25px 20px 47px magenta, 27px -14px 26px cyan, 13px -30px 7px yellow, -1px -6px 10px cyan, 14px 13px 41px purple, 26px -27px 42px red, -17px -17px 10px lime, -8px -26px 45px #ff0080, 2px -29px 28px lime;
  }

  14.8% {
    transform: scale(0.64) rotate(-358.0deg) skew(-39.1deg, -87.5deg) translate(71.2px, -57.6px);
    filter: hue-rotate(98.4deg) blur(9.4px) saturate(112%);
    opacity: 0.68;
    background: purple;
    text-shadow: 6px -20px 40px lime, -22px 22px 22px cyan, 30px -16px 17px yellow, -12px 25px 6px blue, -4px 29px 14px orange, -10px -21px 17px #ff0080, 7px -16px 33px lime, -5px 21px 34px yellow, 26px -28px 14px cyan, 19px 8px 11px purple;
  }

  14.9% {
    transform: scale(0.8) rotate(-91.4deg) skew(-44.3deg, 31.5deg) translate(-17.0px, 16.2px);
    filter: hue-rotate(84.1deg) blur(0.5px) saturate(259%);
    opacity: 0.64;
    background: magenta;
    text-shadow: -1px -23px 38px yellow, -17px 24px 6px purple, 26px -26px 37px orange, 13px -20px 23px red, 25px -10px 49px blue, -20px 20px 30px yellow, 23px 2px 37px yellow, 18px 22px 18px orange, -12px 0px 49px yellow, 10px 7px 10px red;
  }

  15.0% {
    transform: scale(1.34) rotate(-537.0deg) skew(-87.0deg, -72.2deg) translate(35.3px, 89.1px);
    filter: hue-rotate(284.7deg) blur(5.2px) saturate(215%);
    opacity: 0.51;
    background: red;
    text-shadow: 20px -28px 21px blue, 1px 1px 38px #ff0080, -7px -6px 28px cyan, -9px 5px 16px #ff0080, 28px 16px 33px red, 12px 0px 42px red, 3px -1px 18px yellow, 3px -25px 6px pink, 22px -21px 48px orange, -29px -20px 34px lime;
  }

  15.1% {
    transform: scale(1.91) rotate(548.3deg) skew(84.1deg, -75.3deg) translate(54.4px, 0.6px);
    filter: hue-rotate(135.3deg) blur(7.3px) saturate(167%);
    opacity: 0.64;
    background: pink;
    text-shadow: 25px -2px 29px red, 15px 11px 13px cyan, -8px 30px 47px yellow, -6px 6px 25px red, -25px 23px 46px magenta, -11px -10px 33px red, -17px -4px 14px orange, -9px 28px 28px pink, -4px 1px 14px cyan, 4px 15px 30px red;
  }

  15.2% {
    transform: scale(0.73) rotate(-337.9deg) skew(-32.9deg, -16.2deg) translate(-34.8px, -38.4px);
    filter: hue-rotate(234.9deg) blur(4.8px) saturate(78%);
    opacity: 0.57;
    background: red;
    text-shadow: 28px -20px 7px red, -3px 10px 38px lime, -29px -3px 42px magenta, 17px 26px 49px red, -7px 4px 33px pink, -13px -16px 26px yellow, 30px 4px 13px red, 23px -2px 14px magenta, -28px -23px 5px yellow, 19px 17px 20px lime;
  }

  15.3% {
    transform: scale(1.92) rotate(174.4deg) skew(46.4deg, -86.7deg) translate(-64.1px, -68.8px);
    filter: hue-rotate(256.4deg) blur(8.2px) saturate(256%);
    opacity: 0.8;
    background: #ff0080;
    text-shadow: 0px 28px 48px blue, -14px -17px 10px #ff0080, -15px 26px 15px cyan, 19px 18px 5px lime, -13px -5px 17px lime, 15px 3px 39px cyan, 17px 19px 43px orange, 0px 0px 17px cyan, 26px -28px 16px magenta, 1px -21px 6px #ff0080;
  }

  15.4% {
    transform: scale(0.79) rotate(632.1deg) skew(-44.3deg, -39.0deg) translate(-16.0px, -4.2px);
    filter: hue-rotate(338.3deg) blur(2.7px) saturate(107%);
    opacity: 0.46;
    background: red;
    text-shadow: -11px -26px 49px magenta, 17px -26px 9px lime, 16px -28px 33px cyan, 17px 2px 14px lime, 0px 3px 25px red, 7px 15px 22px yellow, -26px 30px 20px #ff0080, 12px 17px 17px purple, -16px -21px 47px purple, -26px 5px 17px red;
  }

  15.5% {
    transform: scale(0.68) rotate(-46.8deg) skew(-22.7deg, 83.1deg) translate(15.2px, -3.1px);
    filter: hue-rotate(85.3deg) blur(3.2px) saturate(113%);
    opacity: 0.74;
    background: lime;
    text-shadow: -8px 13px 34px cyan, 3px -30px 13px pink, 21px 12px 32px #ff0080, -24px 10px 13px purple, 1px 22px 25px magenta, -6px -6px 41px cyan, 8px -8px 15px pink, 0px 11px 38px orange, 1px 5px 32px orange, 10px 25px 36px magenta;
  }

  15.6% {
    transform: scale(1.68) rotate(-386.7deg) skew(-23.1deg, -85.8deg) translate(-52.8px, -42.1px);
    filter: hue-rotate(221.3deg) blur(3.0px) saturate(292%);
    opacity: 0.41;
    background: cyan;
    text-shadow: 2px -23px 11px blue, 14px -21px 43px cyan, 6px 14px 21px lime, 30px -29px 23px cyan, 11px 7px 34px blue, -1px -25px 10px lime, 2px 20px 44px red, -20px 30px 31px pink, 1px -7px 7px purple, -6px -17px 23px orange;
  }

  15.7% {
    transform: scale(1.57) rotate(-146.5deg) skew(28.6deg, 59.1deg) translate(-61.2px, -44.0px);
    filter: hue-rotate(297.5deg) blur(4.1px) saturate(160%);
    opacity: 0.79;
    background: yellow;
    text-shadow: 28px -6px 11px purple, 20px 22px 43px purple, -30px -26px 21px #ff0080, -1px -5px 29px #ff0080, 28px 28px 20px red, 15px -19px 14px blue, -7px 5px 28px #ff0080, 25px -20px 38px red, 9px 21px 19px cyan, -21px 24px 10px red;
  }

  15.8% {
    transform: scale(1.28) rotate(264.0deg) skew(-81.1deg, -45.6deg) translate(-94.5px, 69.0px);
    filter: hue-rotate(112.6deg) blur(8.5px) saturate(141%);
    opacity: 0.61;
    background: cyan;
    text-shadow: -1px -2px 33px purple, -18px 26px 7px #ff0080, -29px 23px 34px orange, -13px -22px 6px cyan, -18px -18px 42px magenta, 17px -9px 48px pink, 5px -29px 48px lime, -11px 20px 25px #ff0080, -21px 2px 24px pink, -30px 4px 40px magenta;
  }

  15.9% {
    transform: scale(1.49) rotate(672.2deg) skew(35.3deg, -11.9deg) translate(89.8px, -74.9px);
    filter: hue-rotate(82.9deg) blur(7.4px) saturate(293%);
    opacity: 0.6;
    background: cyan;
    text-shadow: -30px -12px 25px cyan, -15px 17px 41px lime, -3px 1px 15px #ff0080, -24px 23px 41px pink, 20px 18px 34px #ff0080, 29px -13px 29px cyan, 18px -25px 50px lime, -6px -25px 31px red, -7px 20px 16px #ff0080, -3px -3px 27px #ff0080;
  }

  16.0% {
    transform: scale(1.59) rotate(-369.6deg) skew(18.2deg, 83.8deg) translate(76.5px, -8.9px);
    filter: hue-rotate(125.5deg) blur(5.9px) saturate(286%);
    opacity: 0.96;
    background: yellow;
    text-shadow: -7px -20px 22px yellow, -17px -12px 35px magenta, 12px -3px 44px lime, -19px -24px 37px blue, -28px -7px 30px magenta, 8px -29px 24px lime, 30px 3px 35px purple, 0px 21px 38px blue, -23px 3px 43px magenta, 27px 14px 11px yellow;
  }

  16.1% {
    transform: scale(1.4) rotate(528.8deg) skew(-29.3deg, 42.7deg) translate(54.3px, 44.3px);
    filter: hue-rotate(70.4deg) blur(5.0px) saturate(215%);
    opacity: 0.93;
    background: pink;
    text-shadow: -21px 16px 9px #ff0080, -24px 29px 17px magenta, -4px -29px 11px #ff0080, -16px -13px 27px magenta, 22px 3px 44px red, -7px -9px 7px red, 0px -8px 8px cyan, 27px 19px 32px orange, 7px 26px 35px blue, -17px -2px 40px purple;
  }

  16.2% {
    transform: scale(0.85) rotate(-718.6deg) skew(55.1deg, 88.1deg) translate(-22.9px, 3.3px);
    filter: hue-rotate(209.7deg) blur(2.4px) saturate(186%);
    opacity: 0.82;
    background: purple;
    text-shadow: -28px -24px 25px purple, 23px 18px 19px purple, 26px -28px 15px pink, -12px 3px 20px cyan, 4px 21px 13px red, 22px -12px 23px cyan, -11px 17px 41px lime, -7px 4px 16px yellow, -21px -25px 18px cyan, 30px -30px 26px magenta;
  }

  16.3% {
    transform: scale(1.68) rotate(21.7deg) skew(-52.9deg, -84.3deg) translate(-40.3px, 95.7px);
    filter: hue-rotate(120.2deg) blur(9.6px) saturate(82%);
    opacity: 0.8;
    background: #ff0080;
    text-shadow: 6px -22px 25px blue, 24px 27px 36px #ff0080, -29px -12px 14px purple, 12px 23px 13px pink, -27px 25px 13px lime, -30px 24px 50px magenta, 12px 18px 39px yellow, -12px 1px 48px #ff0080, 9px -21px 42px magenta, -28px 5px 14px blue;
  }

  16.4% {
    transform: scale(1.19) rotate(572.3deg) skew(77.4deg, 61.2deg) translate(-51.6px, 50.3px);
    filter: hue-rotate(146.9deg) blur(3.6px) saturate(61%);
    opacity: 0.43;
    background: #ff0080;
    text-shadow: -12px 0px 13px #ff0080, -24px 7px 32px blue, -29px 15px 29px cyan, -25px -7px 25px red, 24px 13px 30px cyan, 25px -3px 9px magenta, -7px 30px 31px magenta, 18px 29px 50px magenta, -26px 4px 40px purple, -4px 16px 21px yellow;
  }

  16.5% {
    transform: scale(1.19) rotate(-4.7deg) skew(57.3deg, -83.5deg) translate(41.7px, -47.2px);
    filter: hue-rotate(42.9deg) blur(2.3px) saturate(247%);
    opacity: 0.84;
    background: red;
    text-shadow: 9px 1px 36px yellow, 7px -21px 13px #ff0080, -26px -28px 30px #ff0080, 18px 28px 47px #ff0080, -28px 3px 24px yellow, -1px 20px 34px purple, -26px 26px 7px orange, 6px -9px 28px orange, 11px 17px 42px cyan, -6px -23px 17px yellow;
  }

  16.6% {
    transform: scale(1.55) rotate(-508.3deg) skew(-26.2deg, 51.5deg) translate(84.9px, -86.2px);
    filter: hue-rotate(273.5deg) blur(5.7px) saturate(184%);
    opacity: 0.73;
    background: red;
    text-shadow: 30px -7px 29px red, -26px 22px 28px lime, -16px 0px 14px blue, 4px 11px 40px cyan, -20px 30px 42px lime, 18px -9px 46px blue, -21px -8px 25px #ff0080, -29px -1px 16px magenta, -1px -25px 36px orange, -18px -23px 47px purple;
  }

  16.7% {
    transform: scale(1.74) rotate(-507.3deg) skew(71.8deg, -89.1deg) translate(52.0px, 68.4px);
    filter: hue-rotate(16.2deg) blur(7.6px) saturate(216%);
    opacity: 0.53;
    background: cyan;
    text-shadow: 11px 22px 24px yellow, 13px 28px 9px lime, -3px -12px 33px red, -15px 30px 39px purple, -9px -5px 47px pink, 26px -6px 16px purple, 5px 6px 30px yellow, -5px -19px 34px lime, 14px -17px 29px lime, -4px 21px 27px blue;
  }

  16.8% {
    transform: scale(0.91) rotate(-451.1deg) skew(-1.4deg, 15.9deg) translate(-73.6px, -65.5px);
    filter: hue-rotate(335.9deg) blur(1.5px) saturate(290%);
    opacity: 0.45;
    background: magenta;
    text-shadow: 18px -7px 20px purple, -13px 0px 50px red, 27px 19px 7px magenta, 7px -9px 34px blue, 24px -1px 44px red, -3px -29px 5px lime, 0px 21px 22px orange, 7px 28px 33px cyan, -6px 29px 44px cyan, 28px 9px 43px red;
  }

  16.9% {
    transform: scale(0.66) rotate(-88.5deg) skew(67.5deg, 22.8deg) translate(-51.8px, 72.0px);
    filter: hue-rotate(170.0deg) blur(3.2px) saturate(134%);
    opacity: 0.83;
    background: magenta;
    text-shadow: -8px -5px 14px cyan, -12px -17px 27px cyan, 8px -20px 6px cyan, -20px 10px 18px cyan, -15px -7px 23px cyan, 15px 29px 19px cyan, -16px -14px 45px blue, 30px -2px 5px #ff0080, -8px 18px 36px pink, -12px -13px 26px red;
  }

  17.0% {
    transform: scale(0.95) rotate(-281.2deg) skew(36.6deg, 26.4deg) translate(1.7px, 66.3px);
    filter: hue-rotate(29.0deg) blur(4.7px) saturate(169%);
    opacity: 0.8;
    background: pink;
    text-shadow: -1px 18px 50px pink, 18px -10px 34px magenta, 5px -30px 32px purple, 13px 24px 39px red, -20px 20px 15px magenta, 7px -19px 16px yellow, 0px 29px 24px pink, -7px -17px 22px lime, -12px -6px 28px magenta, 30px 13px 42px magenta;
  }

  17.1% {
    transform: scale(0.81) rotate(-686.3deg) skew(-29.3deg, -39.4deg) translate(-45.5px, -78.9px);
    filter: hue-rotate(77.5deg) blur(9.6px) saturate(177%);
    opacity: 0.81;
    background: blue;
    text-shadow: 9px 22px 47px blue, 21px 11px 49px purple, -18px -26px 31px magenta, -4px 24px 28px purple, 7px -1px 21px #ff0080, 14px -3px 43px orange, -6px 24px 8px #ff0080, 12px -6px 21px lime, 16px -11px 39px cyan, 7px 8px 44px cyan;
  }

  17.2% {
    transform: scale(0.85) rotate(-196.9deg) skew(-20.5deg, -74.9deg) translate(87.1px, 83.7px);
    filter: hue-rotate(12.7deg) blur(4.3px) saturate(203%);
    opacity: 0.73;
    background: cyan;
    text-shadow: 19px -24px 20px pink, -21px 21px 37px #ff0080, 29px 8px 9px purple, -20px -8px 39px yellow, -11px 17px 36px cyan, 25px 7px 21px magenta, -26px -20px 48px yellow, -21px 6px 14px orange, 6px -24px 32px lime, 0px -16px 10px lime;
  }

  17.3% {
    transform: scale(0.78) rotate(-552.4deg) skew(-16.1deg, 4.3deg) translate(34.3px, -56.1px);
    filter: hue-rotate(288.6deg) blur(2.8px) saturate(112%);
    opacity: 0.95;
    background: cyan;
    text-shadow: 15px 18px 14px magenta, -17px 5px 21px red, 13px 27px 50px pink, 10px 3px 34px magenta, -11px 27px 34px pink, 16px -23px 32px red, -24px 9px 25px purple, 8px -11px 20px red, 17px -12px 7px orange, -22px -7px 23px red;
  }

  17.4% {
    transform: scale(1.41) rotate(-604.4deg) skew(-33.4deg, 8.7deg) translate(-87.9px, -71.7px);
    filter: hue-rotate(289.8deg) blur(8.2px) saturate(258%);
    opacity: 0.78;
    background: pink;
    text-shadow: -7px 17px 41px purple, 26px 11px 24px magenta, -16px 10px 48px purple, 22px -7px 10px orange, 3px 4px 19px blue, 9px -18px 5px blue, -12px 14px 20px lime, 18px 21px 17px #ff0080, 30px 11px 18px yellow, -18px 12px 46px pink;
  }

  17.5% {
    transform: scale(1.21) rotate(401.3deg) skew(87.1deg, 18.1deg) translate(-27.4px, -46.8px);
    filter: hue-rotate(168.7deg) blur(4.8px) saturate(156%);
    opacity: 0.83;
    background: red;
    text-shadow: -5px 0px 13px orange, -30px -25px 31px cyan, 17px 21px 27px orange, 21px 11px 30px cyan, -9px 3px 12px pink, -15px -5px 7px lime, 16px -3px 17px red, -13px -15px 13px lime, 25px 27px 38px magenta, -9px 25px 5px lime;
  }

  17.6% {
    transform: scale(0.78) rotate(413.2deg) skew(58.8deg, 27.1deg) translate(79.0px, 87.6px);
    filter: hue-rotate(323.4deg) blur(4.5px) saturate(84%);
    opacity: 0.78;
    background: yellow;
    text-shadow: 5px -4px 21px #ff0080, 0px -10px 7px #ff0080, 26px 4px 14px red, 7px 4px 13px orange, -4px 15px 44px purple, 21px -17px 48px magenta, 3px -27px 11px red, 1px 18px 38px blue, 27px 16px 8px yellow, -13px -6px 31px blue;
  }

  17.7% {
    transform: scale(1.14) rotate(-474.0deg) skew(84.9deg, 73.1deg) translate(-76.3px, 5.1px);
    filter: hue-rotate(10.2deg) blur(4.3px) saturate(157%);
    opacity: 0.91;
    background: pink;
    text-shadow: -18px 0px 5px blue, 4px -19px 8px red, -14px 26px 26px #ff0080, -26px -15px 40px pink, -13px -16px 19px lime, -12px -19px 35px blue, 22px 18px 13px yellow, -23px -4px 33px purple, 27px -20px 12px yellow, 6px 8px 5px lime;
  }

  17.8% {
    transform: scale(1.58) rotate(554.2deg) skew(20.7deg, -0.4deg) translate(-37.9px, -64.9px);
    filter: hue-rotate(258.0deg) blur(9.9px) saturate(272%);
    opacity: 0.69;
    background: yellow;
    text-shadow: -3px -3px 12px cyan, -25px 7px 11px lime, -17px -24px 47px orange, 25px -24px 32px orange, -9px -9px 28px orange, -23px -20px 16px magenta, 14px -29px 32px pink, -12px -26px 11px yellow, -21px 7px 21px blue, -15px 1px 17px pink;
  }

  17.9% {
    transform: scale(1.19) rotate(717.8deg) skew(-60.8deg, -82.6deg) translate(-84.0px, -96.3px);
    filter: hue-rotate(251.8deg) blur(4.1px) saturate(63%);
    opacity: 0.81;
    background: blue;
    text-shadow: -12px -4px 40px #ff0080, 5px 15px 26px pink, -30px -23px 27px red, -26px -24px 25px red, -28px -4px 25px magenta, 15px 20px 28px lime, -7px 2px 47px red, 19px 11px 23px purple, -13px -4px 10px yellow, 7px -22px 33px pink;
  }

  18.0% {
    transform: scale(1.75) rotate(-613.3deg) skew(-21.2deg, 49.6deg) translate(-91.7px, 23.4px);
    filter: hue-rotate(75.6deg) blur(9.7px) saturate(295%);
    opacity: 0.62;
    background: red;
    text-shadow: -5px -22px 34px magenta, -18px 11px 15px blue, 4px -28px 18px purple, -15px 28px 33px yellow, 23px 3px 31px lime, -19px -8px 5px magenta, -10px 22px 11px orange, -20px -26px 45px #ff0080, -18px 12px 32px pink, 20px 9px 20px orange;
  }

  18.1% {
    transform: scale(0.92) rotate(271.0deg) skew(36.9deg, -63.3deg) translate(-70.3px, -97.8px);
    filter: hue-rotate(283.4deg) blur(4.0px) saturate(257%);
    opacity: 0.57;
    background: purple;
    text-shadow: -11px 27px 32px red, -19px 22px 37px orange, -17px 28px 23px yellow, 28px -6px 39px pink, -5px 26px 27px blue, -3px 18px 35px pink, 27px -19px 15px pink, -16px -22px 16px purple, 2px -4px 9px #ff0080, -18px 21px 19px orange;
  }

  18.2% {
    transform: scale(1.48) rotate(87.3deg) skew(-89.8deg, 46.8deg) translate(12.7px, -4.0px);
    filter: hue-rotate(173.4deg) blur(9.5px) saturate(188%);
    opacity: 0.46;
    background: cyan;
    text-shadow: -24px 27px 35px blue, 21px -21px 13px cyan, 25px 11px 27px lime, 0px -1px 40px #ff0080, -8px 11px 11px purple, 12px -3px 50px yellow, -5px 6px 50px cyan, 23px -12px 26px purple, -23px 1px 22px yellow, -15px -12px 38px cyan;
  }

  18.3% {
    transform: scale(0.81) rotate(-403.6deg) skew(-2.9deg, -13.6deg) translate(34.5px, -13.2px);
    filter: hue-rotate(151.4deg) blur(9.0px) saturate(54%);
    opacity: 0.88;
    background: yellow;
    text-shadow: 7px 17px 14px cyan, 13px -2px 24px pink, -21px -20px 38px #ff0080, 17px -12px 31px magenta, 13px -24px 46px purple, -29px 3px 23px magenta, -14px -30px 32px pink, 2px 5px 8px red, 21px -10px 35px orange, -15px -30px 27px red;
  }

  18.4% {
    transform: scale(1.33) rotate(99.4deg) skew(55.1deg, 64.5deg) translate(-14.2px, 62.9px);
    filter: hue-rotate(110.3deg) blur(5.3px) saturate(124%);
    opacity: 0.73;
    background: lime;
    text-shadow: -13px -20px 12px lime, -16px -21px 13px purple, 29px 4px 28px pink, 20px 27px 21px purple, 20px -14px 7px orange, -21px 1px 38px magenta, 9px 2px 6px cyan, -10px -20px 43px blue, 15px -26px 34px lime, 13px 15px 5px blue;
  }

  18.5% {
    transform: scale(1.89) rotate(64.9deg) skew(-19.1deg, 46.0deg) translate(76.2px, -8.1px);
    filter: hue-rotate(349.2deg) blur(3.0px) saturate(185%);
    opacity: 0.54;
    background: pink;
    text-shadow: 22px 7px 49px magenta, -24px -20px 42px red, -16px 2px 21px #ff0080, -7px -2px 30px magenta, -12px 8px 7px blue, -2px -4px 18px red, -1px 12px 24px lime, -9px 7px 34px magenta, 27px -14px 23px magenta, 11px 27px 20px blue;
  }

  18.6% {
    transform: scale(1.26) rotate(-370.0deg) skew(-30.1deg, 51.0deg) translate(-4.8px, -69.8px);
    filter: hue-rotate(249.8deg) blur(8.2px) saturate(172%);
    opacity: 0.87;
    background: red;
    text-shadow: -22px 21px 17px pink, 6px -13px 23px lime, -13px -3px 37px pink, 18px -10px 48px #ff0080, 11px -27px 27px cyan, -15px -10px 22px #ff0080, -25px 6px 33px purple, -17px 6px 27px purple, -5px 21px 6px lime, -30px -11px 30px lime;
  }

  18.7% {
    transform: scale(1.69) rotate(-33.7deg) skew(65.2deg, -30.5deg) translate(9.9px, 57.5px);
    filter: hue-rotate(167.9deg) blur(2.3px) saturate(179%);
    opacity: 0.77;
    background: cyan;
    text-shadow: 11px 0px 36px purple, -15px 16px 18px red, -7px 8px 17px blue, -3px -22px 24px yellow, 9px 11px 14px orange, -22px -11px 34px orange, -10px -1px 5px lime, 25px 29px 16px orange, 26px -4px 9px cyan, -13px 15px 38px pink;
  }

  18.8% {
    transform: scale(1.13) rotate(323.9deg) skew(51.1deg, 41.3deg) translate(-56.4px, 87.2px);
    filter: hue-rotate(192.0deg) blur(3.5px) saturate(139%);
    opacity: 0.71;
    background: blue;
    text-shadow: 27px 30px 30px cyan, -17px 7px 28px blue, -14px -10px 30px cyan, -4px -20px 5px cyan, -7px 18px 12px yellow, -13px 25px 44px blue, 28px 16px 33px #ff0080, -21px -21px 40px magenta, -25px -11px 7px pink, -5px 12px 28px purple;
  }

  18.9% {
    transform: scale(0.98) rotate(22.6deg) skew(-11.4deg, 77.3deg) translate(-26.1px, 94.6px);
    filter: hue-rotate(161.0deg) blur(3.7px) saturate(195%);
    opacity: 0.33;
    background: lime;
    text-shadow: -24px 30px 20px blue, 15px 24px 7px orange, -26px -5px 18px purple, 1px 23px 44px blue, 7px -3px 25px #ff0080, -3px -19px 16px yellow, -20px 22px 46px blue, 8px 0px 16px magenta, 27px 21px 27px orange, -9px -14px 31px cyan;
  }

  19.0% {
    transform: scale(0.76) rotate(470.7deg) skew(47.8deg, 21.5deg) translate(-56.5px, -11.9px);
    filter: hue-rotate(116.3deg) blur(5.1px) saturate(274%);
    opacity: 0.59;
    background: lime;
    text-shadow: 5px -26px 46px yellow, 25px -6px 29px pink, -10px -14px 48px yellow, 23px 22px 38px yellow, 2px 15px 7px blue, -8px -4px 45px yellow, 15px -18px 37px cyan, 12px 4px 16px cyan, -14px -29px 47px yellow, -16px -25px 21px pink;
  }

  19.1% {
    transform: scale(0.71) rotate(450.0deg) skew(-58.3deg, 4.6deg) translate(52.7px, -60.4px);
    filter: hue-rotate(31.8deg) blur(1.4px) saturate(231%);
    opacity: 0.83;
    background: blue;
    text-shadow: -28px 29px 49px blue, 12px -16px 21px magenta, -5px -29px 33px magenta, -13px 22px 19px cyan, 24px 11px 27px purple, -22px -12px 19px lime, 6px -25px 34px #ff0080, -9px -14px 23px purple, 18px 9px 18px red, -13px 18px 9px cyan;
  }

  19.2% {
    transform: scale(1.4) rotate(522.9deg) skew(-73.4deg, 65.8deg) translate(-69.0px, 16.3px);
    filter: hue-rotate(208.5deg) blur(6.8px) saturate(68%);
    opacity: 0.63;
    background: purple;
    text-shadow: 21px -6px 24px magenta, 24px -6px 42px yellow, 30px 16px 42px orange, -29px -9px 16px #ff0080, -8px -24px 14px yellow, -19px -18px 30px pink, 13px 24px 30px lime, -10px -13px 24px yellow, 19px -3px 33px cyan, -7px 19px 47px pink;
  }

  19.3% {
    transform: scale(0.55) rotate(115.7deg) skew(-74.5deg, -51.0deg) translate(-29.6px, -32.6px);
    filter: hue-rotate(76.1deg) blur(3.8px) saturate(75%);
    opacity: 0.88;
    background: pink;
    text-shadow: -19px 24px 25px magenta, 16px 18px 34px red, 20px 23px 30px magenta, -2px -10px 38px red, 6px 5px 25px purple, 20px 7px 23px lime, 3px -5px 34px red, -24px -28px 16px cyan, 19px -28px 30px lime, 26px -12px 35px blue;
  }

  19.4% {
    transform: scale(0.73) rotate(77.6deg) skew(-59.8deg, 64.6deg) translate(-28.6px, 26.6px);
    filter: hue-rotate(52.0deg) blur(1.6px) saturate(159%);
    opacity: 0.8;
    background: orange;
    text-shadow: 0px -5px 32px purple, -22px 21px 18px red, 0px 9px 33px blue, 5px -11px 9px orange, 19px 21px 33px #ff0080, 19px 15px 38px lime, 22px 20px 38px magenta, -16px -30px 43px orange, -18px 11px 16px red, 16px -2px 47px cyan;
  }

  19.5% {
    transform: scale(1.93) rotate(34.0deg) skew(39.7deg, -39.4deg) translate(59.6px, 76.7px);
    filter: hue-rotate(244.5deg) blur(1.6px) saturate(116%);
    opacity: 0.93;
    background: yellow;
    text-shadow: -9px 27px 9px red, 22px 14px 33px magenta, 27px -22px 27px red, -21px -28px 13px magenta, 25px -24px 20px #ff0080, 17px -19px 28px magenta, -30px -18px 7px lime, -10px 8px 46px lime, 20px -10px 20px lime, 16px -17px 20px orange;
  }

  19.6% {
    transform: scale(0.99) rotate(-593.4deg) skew(33.2deg, -57.1deg) translate(-47.2px, 32.4px);
    filter: hue-rotate(229.5deg) blur(3.0px) saturate(247%);
    opacity: 0.68;
    background: magenta;
    text-shadow: 22px 2px 17px red, 22px -24px 13px red, 24px -9px 15px lime, -2px -15px 43px blue, -30px 27px 40px red, 24px 12px 13px purple, 21px 9px 48px orange, -6px 10px 41px blue, -12px -8px 13px cyan, -13px -6px 28px magenta;
  }

  19.7% {
    transform: scale(1.29) rotate(141.7deg) skew(36.5deg, -61.7deg) translate(-53.1px, 64.0px);
    filter: hue-rotate(292.5deg) blur(3.2px) saturate(272%);
    opacity: 0.36;
    background: purple;
    text-shadow: -22px 12px 8px purple, -12px 10px 44px red, -6px -25px 28px blue, -26px -7px 44px blue, 21px -20px 37px red, -26px 10px 32px blue, -20px -7px 21px magenta, 20px -22px 35px magenta, 18px 24px 50px cyan, 14px 12px 46px lime;
  }

  19.8% {
    transform: scale(1.93) rotate(543.6deg) skew(80.5deg, -74.7deg) translate(48.6px, -34.0px);
    filter: hue-rotate(297.7deg) blur(0.5px) saturate(219%);
    opacity: 0.67;
    background: pink;
    text-shadow: -22px 1px 13px red, -26px -29px 43px blue, -25px 19px 11px lime, 11px -1px 43px lime, 3px 25px 17px red, -29px 19px 38px blue, 26px 15px 39px pink, 6px -13px 37px red, 28px 8px 48px magenta, -30px -2px 21px cyan;
  }

  19.9% {
    transform: scale(1.78) rotate(-662.3deg) skew(-89.7deg, 35.1deg) translate(-55.2px, 3.4px);
    filter: hue-rotate(114.1deg) blur(7.1px) saturate(57%);
    opacity: 0.62;
    background: pink;
    text-shadow: -5px 20px 17px red, -14px 0px 28px purple, -11px -16px 8px blue, -29px 18px 32px blue, -12px -16px 38px purple, 12px -3px 37px magenta, 23px -20px 43px yellow, 13px 18px 19px #ff0080, 4px 21px 16px red, -18px 13px 33px blue;
  }

  20.0% {
    transform: scale(0.91) rotate(594.5deg) skew(16.7deg, 21.6deg) translate(39.1px, -81.5px);
    filter: hue-rotate(143.6deg) blur(1.3px) saturate(149%);
    opacity: 0.75;
    background: pink;
    text-shadow: -4px 28px 28px magenta, 18px -2px 25px red, -8px 29px 40px purple, -24px 11px 48px cyan, -12px 21px 12px pink, -3px -14px 41px lime, 11px 16px 29px pink, -16px 12px 6px blue, 16px 13px 18px cyan, 14px 20px 14px #ff0080;
  }

  20.1% {
    transform: scale(0.98) rotate(659.0deg) skew(-89.1deg, -46.4deg) translate(-15.6px, -85.6px);
    filter: hue-rotate(260.7deg) blur(1.7px) saturate(122%);
    opacity: 0.47;
    background: magenta;
    text-shadow: -30px -7px 22px red, 15px -25px 35px purple, 22px -25px 23px orange, -23px 23px 36px pink, 14px -6px 16px pink, 6px -12px 30px yellow, -1px 11px 50px purple, -15px -13px 46px #ff0080, 12px 30px 32px cyan, -7px 26px 27px orange;
  }

  20.2% {
    transform: scale(1.08) rotate(83.9deg) skew(-55.1deg, 77.8deg) translate(-48.7px, 68.3px);
    filter: hue-rotate(313.6deg) blur(2.5px) saturate(265%);
    opacity: 0.73;
    background: red;
    text-shadow: -14px 7px 29px purple, 20px -1px 25px lime, -14px -20px 8px yellow, -24px -20px 12px pink, 6px 4px 45px yellow, -25px 16px 30px yellow, 7px 8px 9px red, 5px 23px 22px purple, 12px 27px 22px lime, 25px -17px 8px red;
  }

  20.3% {
    transform: scale(1.94) rotate(195.1deg) skew(87.2deg, -36.9deg) translate(-42.6px, -48.6px);
    filter: hue-rotate(207.3deg) blur(1.9px) saturate(119%);
    opacity: 0.9;
    background: red;
    text-shadow: -15px -10px 21px magenta, -29px 0px 15px purple, -7px -5px 37px blue, -29px -14px 31px #ff0080, -7px -6px 50px #ff0080, -29px 18px 17px magenta, 30px 4px 48px cyan, -12px -12px 36px magenta, 30px -9px 29px yellow, -22px 4px 32px cyan;
  }

  20.4% {
    transform: scale(1.03) rotate(-420.7deg) skew(-18.3deg, -21.0deg) translate(42.9px, 94.9px);
    filter: hue-rotate(187.3deg) blur(8.5px) saturate(61%);
    opacity: 0.54;
    background: cyan;
    text-shadow: 20px -17px 43px blue, -29px -29px 37px orange, -9px 22px 47px purple, -10px 11px 26px red, 0px -29px 31px lime, -4px 10px 5px red, 16px -1px 19px magenta, -9px -1px 16px purple, -14px 6px 34px pink, 7px -19px 38px #ff0080;
  }

  20.5% {
    transform: scale(1.53) rotate(210.5deg) skew(-31.7deg, 48.5deg) translate(-58.4px, 85.7px);
    filter: hue-rotate(190.5deg) blur(2.2px) saturate(227%);
    opacity: 0.56;
    background: pink;
    text-shadow: -30px -5px 14px lime, -6px -20px 24px orange, -20px 18px 38px cyan, 23px -20px 26px red, -16px 5px 9px blue, 18px 1px 33px orange, 8px 14px 15px red, -17px 29px 35px blue, 28px 27px 27px magenta, 22px 22px 13px lime;
  }

  20.6% {
    transform: scale(0.76) rotate(377.7deg) skew(74.6deg, -77.8deg) translate(93.3px, 60.3px);
    filter: hue-rotate(55.8deg) blur(5.3px) saturate(81%);
    opacity: 0.52;
    background: lime;
    text-shadow: 20px -2px 24px purple, -1px 7px 41px pink, 24px 5px 28px red, 5px -27px 31px yellow, -9px 25px 41px pink, 25px -9px 29px blue, 25px -1px 21px yellow, 27px -13px 32px pink, 20px 8px 11px purple, 2px 28px 10px yellow;
  }

  20.7% {
    transform: scale(1.12) rotate(70.6deg) skew(-69.3deg, 69.3deg) translate(-0.4px, -47.2px);
    filter: hue-rotate(101.5deg) blur(6.0px) saturate(182%);
    opacity: 0.83;
    background: blue;
    text-shadow: 13px 6px 39px red, -9px -14px 25px orange, 3px 9px 29px magenta, 2px 23px 9px red, -22px -16px 31px magenta, -9px 21px 34px magenta, 28px -11px 18px #ff0080, 26px 28px 48px pink, 23px 4px 38px #ff0080, -5px -10px 7px #ff0080;
  }

  20.8% {
    transform: scale(1.66) rotate(436.4deg) skew(-23.4deg, -31.6deg) translate(91.6px, -0.9px);
    filter: hue-rotate(4.0deg) blur(1.6px) saturate(96%);
    opacity: 0.83;
    background: blue;
    text-shadow: -17px -27px 40px #ff0080, -30px -21px 30px lime, 17px 23px 21px yellow, -13px -15px 25px cyan, -5px 17px 38px blue, 0px -15px 19px pink, 5px 3px 25px red, 19px 4px 47px pink, 3px 28px 20px magenta, -13px 6px 38px pink;
  }

  20.9% {
    transform: scale(0.91) rotate(596.9deg) skew(-23.6deg, -1.1deg) translate(-49.0px, 18.5px);
    filter: hue-rotate(233.7deg) blur(9.9px) saturate(278%);
    opacity: 0.64;
    background: pink;
    text-shadow: 27px 23px 28px red, 6px 9px 9px orange, -5px -15px 27px lime, -6px 13px 43px pink, -1px -13px 40px lime, 1px 15px 36px red, 10px -12px 14px blue, 5px -13px 41px #ff0080, -16px -10px 28px yellow, -6px -21px 8px orange;
  }

  21.0% {
    transform: scale(0.74) rotate(-288.8deg) skew(18.5deg, -61.8deg) translate(7.5px, 45.5px);
    filter: hue-rotate(106.0deg) blur(0.2px) saturate(176%);
    opacity: 0.6;
    background: blue;
    text-shadow: 8px 29px 34px #ff0080, -16px 13px 46px lime, -29px -21px 36px orange, -8px -22px 41px purple, 4px -28px 20px cyan, -4px 23px 12px #ff0080, 16px -5px 45px orange, -6px 9px 10px yellow, -6px 8px 30px #ff0080, 24px -8px 13px yellow;
  }

  21.1% {
    transform: scale(1.44) rotate(-51.8deg) skew(27.3deg, -86.1deg) translate(47.8px, 8.0px);
    filter: hue-rotate(162.9deg) blur(9.6px) saturate(155%);
    opacity: 0.93;
    background: red;
    text-shadow: -2px 19px 20px orange, 3px 3px 22px #ff0080, 21px 25px 15px magenta, -29px -16px 28px cyan, -30px 20px 31px orange, -26px -7px 5px cyan, -9px -15px 27px orange, 30px -7px 30px #ff0080, 21px -13px 19px red, -9px 12px 35px orange;
  }

  21.2% {
    transform: scale(1.26) rotate(29.1deg) skew(40.1deg, -8.1deg) translate(-46.1px, 25.6px);
    filter: hue-rotate(123.7deg) blur(6.4px) saturate(292%);
    opacity: 0.53;
    background: magenta;
    text-shadow: 15px -16px 19px lime, -8px -21px 36px red, 19px -13px 21px red, 21px -25px 17px purple, -21px -1px 40px orange, 20px 28px 29px orange, -14px 16px 32px orange, -21px 17px 47px cyan, 20px 11px 37px orange, 12px -3px 17px magenta;
  }

  21.3% {
    transform: scale(1.72) rotate(-676.6deg) skew(-66.2deg, 8.1deg) translate(81.5px, 31.0px);
    filter: hue-rotate(62.1deg) blur(4.5px) saturate(68%);
    opacity: 0.91;
    background: blue;
    text-shadow: -19px -6px 47px lime, 23px -26px 31px magenta, -27px -2px 5px cyan, -2px -10px 5px #ff0080, -22px 17px 22px blue, 1px -19px 8px cyan, 16px 7px 5px purple, -25px -26px 12px blue, -10px -28px 37px red, 26px 9px 23px pink;
  }

  21.4% {
    transform: scale(1.97) rotate(37.1deg) skew(39.7deg, 49.0deg) translate(-50.9px, -9.9px);
    filter: hue-rotate(32.3deg) blur(7.2px) saturate(83%);
    opacity: 0.95;
    background: #ff0080;
    text-shadow: -27px 10px 27px yellow, 16px 22px 38px blue, 10px 18px 38px orange, -2px 28px 8px purple, 2px 22px 41px yellow, -24px 9px 37px magenta, 1px -11px 18px lime, 30px 26px 29px purple, -26px -4px 21px blue, -23px -24px 11px red;
  }

  21.5% {
    transform: scale(1.41) rotate(-647.3deg) skew(-23.8deg, 13.2deg) translate(35.2px, 11.7px);
    filter: hue-rotate(54.5deg) blur(1.1px) saturate(133%);
    opacity: 0.46;
    background: orange;
    text-shadow: 26px 1px 26px orange, -2px 16px 12px yellow, 20px -1px 35px blue, -16px 4px 23px lime, -14px 26px 33px #ff0080, -16px -5px 49px yellow, -4px -26px 42px pink, -9px -8px 38px lime, 2px 3px 42px yellow, -30px -11px 11px yellow;
  }

  21.6% {
    transform: scale(0.59) rotate(421.8deg) skew(19.6deg, 39.1deg) translate(57.9px, 31.3px);
    filter: hue-rotate(23.5deg) blur(1.0px) saturate(265%);
    opacity: 0.92;
    background: magenta;
    text-shadow: 21px 26px 30px pink, -10px -30px 44px pink, 20px -29px 33px purple, 12px 23px 12px red, 8px -8px 40px #ff0080, 30px 8px 19px pink, -12px -15px 12px orange, -18px 10px 15px pink, -7px 6px 25px blue, 12px -18px 16px magenta;
  }

  21.7% {
    transform: scale(0.51) rotate(641.8deg) skew(-86.6deg, -55.1deg) translate(-67.6px, 51.9px);
    filter: hue-rotate(252.5deg) blur(1.7px) saturate(56%);
    opacity: 0.57;
    background: pink;
    text-shadow: -7px -6px 45px lime, 24px -17px 10px #ff0080, 19px -8px 35px lime, -3px -13px 16px yellow, -16px -15px 6px magenta, 26px 30px 31px purple, -10px 10px 30px red, 14px -22px 30px blue, -15px 7px 26px red, -11px 4px 47px red;
  }

  21.8% {
    transform: scale(1.87) rotate(-480.9deg) skew(3.5deg, -72.8deg) translate(-6.9px, -76.0px);
    filter: hue-rotate(294.3deg) blur(5.3px) saturate(61%);
    opacity: 0.56;
    background: cyan;
    text-shadow: 1px 26px 22px blue, 0px 25px 34px purple, 1px 1px 26px purple, -13px 0px 14px blue, 24px -20px 36px blue, 19px 25px 13px lime, -1px -7px 50px orange, 21px 5px 6px red, 0px 5px 46px pink, -19px 15px 43px red;
  }

  21.9% {
    transform: scale(1.78) rotate(663.0deg) skew(-40.4deg, 16.2deg) translate(-11.3px, 84.0px);
    filter: hue-rotate(254.1deg) blur(2.8px) saturate(91%);
    opacity: 0.46;
    background: purple;
    text-shadow: -8px -3px 39px pink, -24px 4px 34px blue, 24px 23px 12px magenta, 20px -3px 44px purple, 0px -18px 5px purple, -18px -23px 17px orange, 27px -23px 35px lime, -10px -4px 7px blue, 18px -7px 26px pink, -4px 18px 18px magenta;
  }

  22.0% {
    transform: scale(1.5) rotate(254.1deg) skew(27.9deg, 57.9deg) translate(93.1px, -19.9px);
    filter: hue-rotate(264.0deg) blur(3.2px) saturate(121%);
    opacity: 0.69;
    background: orange;
    text-shadow: 27px 5px 26px orange, -16px -12px 10px yellow, 21px -17px 50px lime, 13px -2px 9px orange, 23px -29px 14px cyan, -18px 1px 22px red, 10px 0px 9px orange, -3px 15px 29px orange, -15px 20px 10px purple, -6px -12px 6px red;
  }

  22.1% {
    transform: scale(0.75) rotate(-367.1deg) skew(60.6deg, -64.7deg) translate(-50.9px, -26.1px);
    filter: hue-rotate(12.1deg) blur(8.8px) saturate(85%);
    opacity: 0.53;
    background: purple;
    text-shadow: -7px -18px 12px #ff0080, 3px 13px 45px pink, -4px -19px 29px cyan, -3px 10px 16px yellow, 30px 14px 15px yellow, -20px -18px 24px cyan, -19px -3px 27px #ff0080, -26px -26px 44px orange, 23px -2px 31px cyan, -1px 12px 15px lime;
  }

  22.2% {
    transform: scale(0.6) rotate(-493.5deg) skew(52.8deg, -23.1deg) translate(-68.7px, -78.5px);
    filter: hue-rotate(35.9deg) blur(7.1px) saturate(170%);
    opacity: 0.54;
    background: magenta;
    text-shadow: 10px -19px 27px lime, -16px -26px 34px yellow, 3px 20px 18px lime, -11px 28px 11px #ff0080, 13px -26px 17px #ff0080, -21px -10px 18px blue, -17px 15px 6px purple, -8px 9px 10px red, -14px -3px 35px pink, 15px 3px 44px red;
  }

  22.3% {
    transform: scale(0.91) rotate(605.7deg) skew(-53.9deg, 77.8deg) translate(34.1px, 41.1px);
    filter: hue-rotate(103.9deg) blur(0.1px) saturate(255%);
    opacity: 0.92;
    background: cyan;
    text-shadow: 27px 20px 14px magenta, -11px 9px 20px #ff0080, -23px 6px 17px pink, 8px -26px 45px cyan, -6px 17px 15px pink, -24px 11px 8px pink, 5px -20px 32px yellow, 0px -14px 19px lime, -16px -21px 13px #ff0080, -13px 24px 10px red;
  }

  22.4% {
    transform: scale(1.59) rotate(653.0deg) skew(-54.2deg, 13.4deg) translate(37.2px, 80.9px);
    filter: hue-rotate(247.1deg) blur(1.6px) saturate(158%);
    opacity: 0.39;
    background: lime;
    text-shadow: 0px -7px 37px blue, -29px -18px 23px red, -20px 0px 10px orange, -17px -25px 40px red, 14px 19px 7px cyan, -11px 19px 17px lime, -4px -11px 24px pink, -6px -26px 48px red, 21px -19px 44px blue, -26px 13px 37px magenta;
  }

  22.5% {
    transform: scale(0.52) rotate(-298.8deg) skew(-74.1deg, 25.1deg) translate(75.7px, -21.4px);
    filter: hue-rotate(343.0deg) blur(8.0px) saturate(59%);
    opacity: 0.69;
    background: #ff0080;
    text-shadow: 14px -3px 13px orange, -19px 12px 38px magenta, -3px 26px 44px magenta, 3px 1px 44px magenta, -30px -7px 42px red, -14px 29px 9px #ff0080, -12px -5px 45px yellow, 5px 8px 25px lime, 15px 8px 17px orange, -28px 11px 25px lime;
  }

  22.6% {
    transform: scale(0.57) rotate(-237.8deg) skew(-30.1deg, -15.5deg) translate(-24.0px, 57.2px);
    filter: hue-rotate(256.2deg) blur(7.3px) saturate(93%);
    opacity: 0.56;
    background: purple;
    text-shadow: 13px 18px 38px orange, 24px -9px 26px blue, -15px 21px 35px #ff0080, -17px 25px 47px pink, -23px 29px 31px magenta, 23px -30px 10px lime, 13px -24px 41px magenta, 14px 30px 24px lime, 5px 29px 15px #ff0080, -18px 30px 27px blue;
  }

  22.7% {
    transform: scale(1.17) rotate(170.8deg) skew(29.8deg, 16.7deg) translate(48.5px, -30.9px);
    filter: hue-rotate(115.4deg) blur(5.2px) saturate(62%);
    opacity: 0.54;
    background: yellow;
    text-shadow: 14px -9px 50px yellow, 18px 16px 39px lime, -25px 30px 8px cyan, 29px 1px 46px orange, -9px -16px 18px lime, -29px 18px 21px blue, -18px -7px 43px purple, 30px -20px 26px lime, -21px -11px 20px red, 11px 9px 40px pink;
  }

  22.8% {
    transform: scale(1.79) rotate(605.8deg) skew(-81.7deg, 77.3deg) translate(31.7px, -35.0px);
    filter: hue-rotate(226.4deg) blur(2.3px) saturate(104%);
    opacity: 0.5;
    background: #ff0080;
    text-shadow: 23px 27px 31px yellow, -15px -30px 14px yellow, -9px -12px 23px yellow, -11px 3px 39px yellow, -14px -19px 25px cyan, 22px 18px 41px lime, 11px 4px 24px orange, -29px -23px 37px yellow, 4px 26px 14px red, -18px -4px 32px #ff0080;
  }

  22.9% {
    transform: scale(1.28) rotate(172.7deg) skew(-17.7deg, 43.1deg) translate(-54.0px, 0.9px);
    filter: hue-rotate(10.7deg) blur(4.5px) saturate(273%);
    opacity: 0.7;
    background: cyan;
    text-shadow: -14px 20px 28px red, 20px 17px 24px yellow, 14px -3px 35px lime, 16px -23px 11px purple, 4px -20px 37px #ff0080, 29px 5px 12px cyan, 20px -24px 21px orange, 4px 25px 45px purple, 28px -25px 10px purple, -27px -27px 17px purple;
  }

  23.0% {
    transform: scale(0.74) rotate(585.4deg) skew(-71.9deg, 85.6deg) translate(-84.4px, -23.1px);
    filter: hue-rotate(226.2deg) blur(9.6px) saturate(285%);
    opacity: 0.92;
    background: blue;
    text-shadow: -19px -15px 18px orange, -1px -14px 19px pink, -12px 22px 15px yellow, 14px 1px 33px purple, 5px 0px 43px magenta, 12px 22px 37px magenta, 16px 15px 9px yellow, 0px -1px 48px yellow, 12px 11px 10px purple, 18px 13px 28px pink;
  }

  23.1% {
    transform: scale(0.53) rotate(346.7deg) skew(-86.6deg, 11.6deg) translate(25.2px, 53.3px);
    filter: hue-rotate(76.5deg) blur(1.3px) saturate(194%);
    opacity: 0.44;
    background: purple;
    text-shadow: 9px -25px 35px yellow, -10px -7px 6px blue, 14px 8px 36px magenta, 17px 17px 21px blue, 25px -4px 24px yellow, -24px 22px 35px red, 19px 14px 31px blue, 26px -26px 14px blue, 2px 30px 13px #ff0080, -24px 20px 20px red;
  }

  23.2% {
    transform: scale(0.58) rotate(-609.1deg) skew(35.4deg, 40.9deg) translate(-78.1px, -92.6px);
    filter: hue-rotate(241.2deg) blur(8.7px) saturate(266%);
    opacity: 0.87;
    background: blue;
    text-shadow: 22px 14px 23px #ff0080, -29px -8px 19px yellow, 9px -11px 42px purple, -27px -2px 29px orange, -15px 19px 25px cyan, 9px -10px 37px orange, 25px -11px 32px magenta, -15px 9px 21px pink, -21px 18px 48px pink, 11px 17px 37px cyan;
  }

  23.3% {
    transform: scale(1.48) rotate(364.8deg) skew(-82.5deg, -85.7deg) translate(-81.8px, -84.7px);
    filter: hue-rotate(286.7deg) blur(3.6px) saturate(228%);
    opacity: 0.63;
    background: purple;
    text-shadow: -24px 14px 41px red, -13px -21px 45px orange, 29px -29px 17px pink, -20px -20px 18px yellow, -8px -6px 35px cyan, -5px -5px 37px #ff0080, 7px 19px 38px cyan, -25px -7px 22px yellow, 19px -26px 25px lime, 2px 13px 8px orange;
  }

  23.4% {
    transform: scale(1.94) rotate(-718.4deg) skew(27.0deg, -73.3deg) translate(-25.8px, -28.6px);
    filter: hue-rotate(303.5deg) blur(9.1px) saturate(271%);
    opacity: 0.64;
    background: orange;
    text-shadow: -25px 25px 29px cyan, 25px -29px 42px red, 18px -8px 30px red, 26px -1px 39px yellow, -29px 16px 39px pink, -1px -12px 33px pink, 28px 21px 5px lime, 23px 18px 43px magenta, -11px -7px 14px cyan, 3px -3px 42px purple;
  }

  23.5% {
    transform: scale(1.17) rotate(-218.1deg) skew(-2.0deg, 55.7deg) translate(-25.9px, -46.6px);
    filter: hue-rotate(33.8deg) blur(4.8px) saturate(145%);
    opacity: 0.34;
    background: cyan;
    text-shadow: -27px 18px 36px blue, 20px 26px 29px purple, -28px -17px 9px lime, 16px -16px 21px red, 8px -2px 49px orange, 27px 14px 8px lime, 26px 25px 23px lime, 25px 30px 42px pink, 5px -13px 25px magenta, -13px -3px 6px orange;
  }

  23.6% {
    transform: scale(0.81) rotate(25.8deg) skew(-50.3deg, 87.6deg) translate(1.2px, -17.4px);
    filter: hue-rotate(205.9deg) blur(9.8px) saturate(239%);
    opacity: 0.75;
    background: #ff0080;
    text-shadow: 0px 6px 26px purple, 20px 30px 22px #ff0080, -7px 1px 11px blue, -22px 26px 25px lime, 11px -2px 41px #ff0080, 15px 19px 31px lime, 8px -22px 38px pink, -27px 21px 45px blue, 4px -19px 30px blue, 8px 29px 17px purple;
  }

  23.7% {
    transform: scale(1.25) rotate(487.4deg) skew(5.8deg, 52.3deg) translate(-12.5px, -90.8px);
    filter: hue-rotate(262.1deg) blur(5.5px) saturate(63%);
    opacity: 0.68;
    background: cyan;
    text-shadow: -11px 22px 19px cyan, -29px -4px 43px lime, -14px 30px 24px lime, -9px -17px 30px yellow, 17px 10px 21px cyan, 16px 20px 21px lime, 1px -17px 40px cyan, 30px -17px 36px blue, -4px -24px 14px lime, 26px 6px 36px blue;
  }

  23.8% {
    transform: scale(1.98) rotate(-36.3deg) skew(-28.2deg, -53.0deg) translate(-58.9px, 5.5px);
    filter: hue-rotate(320.2deg) blur(3.3px) saturate(182%);
    opacity: 0.85;
    background: #ff0080;
    text-shadow: 27px 0px 33px yellow, -21px 24px 33px pink, -14px -17px 44px cyan, 27px -23px 36px lime, 17px -14px 14px #ff0080, -29px 17px 19px lime, 11px 0px 21px red, -12px -7px 39px blue, -27px -19px 30px red, 0px -14px 43px magenta;
  }

  23.9% {
    transform: scale(1.03) rotate(-359.1deg) skew(-85.8deg, -9.8deg) translate(-49.1px, 74.3px);
    filter: hue-rotate(39.7deg) blur(0.2px) saturate(293%);
    opacity: 0.64;
    background: magenta;
    text-shadow: 4px -17px 28px pink, -29px 21px 9px blue, 30px 10px 17px red, 3px 27px 33px cyan, -30px -20px 14px lime, 3px -12px 22px orange, -14px 6px 34px orange, -25px 26px 26px red, 14px 22px 15px orange, 14px -15px 22px lime;
  }

  24.0% {
    transform: scale(0.92) rotate(-121.0deg) skew(79.6deg, -71.1deg) translate(-27.1px, -26.0px);
    filter: hue-rotate(267.4deg) blur(10.0px) saturate(94%);
    opacity: 0.45;
    background: #ff0080;
    text-shadow: 26px -28px 35px purple, 1px 10px 27px magenta, 15px 29px 34px purple, 18px 4px 14px blue, 8px -21px 41px lime, 12px -7px 38px red, -5px 16px 14px magenta, -28px -19px 8px #ff0080, 1px -4px 14px red, -18px -16px 17px purple;
  }

  24.1% {
    transform: scale(0.56) rotate(-20.9deg) skew(-29.9deg, -48.1deg) translate(41.0px, 22.5px);
    filter: hue-rotate(129.2deg) blur(0.0px) saturate(277%);
    opacity: 0.45;
    background: blue;
    text-shadow: 16px -26px 22px pink, -27px -5px 26px red, -13px 10px 26px blue, 17px 16px 29px cyan, -2px -18px 50px red, -25px -24px 20px cyan, -10px 24px 29px lime, -21px -17px 11px orange, -1px 10px 12px pink, 30px 3px 49px orange;
  }

  24.2% {
    transform: scale(0.63) rotate(711.2deg) skew(70.9deg, -27.2deg) translate(48.5px, -58.0px);
    filter: hue-rotate(305.6deg) blur(7.9px) saturate(82%);
    opacity: 0.99;
    background: blue;
    text-shadow: -16px 16px 34px magenta, -21px 27px 44px yellow, -20px -11px 14px purple, 28px -15px 25px cyan, -24px 28px 15px yellow, -4px -2px 44px orange, -18px 2px 18px yellow, -16px -1px 48px pink, -20px -11px 12px #ff0080, -1px 2px 14px blue;
  }

  24.3% {
    transform: scale(1.15) rotate(242.7deg) skew(-75.7deg, -27.9deg) translate(1.4px, 10.6px);
    filter: hue-rotate(19.1deg) blur(0.2px) saturate(227%);
    opacity: 0.34;
    background: magenta;
    text-shadow: 10px -7px 33px purple, -9px 8px 17px magenta, 28px 30px 17px purple, 11px 17px 41px orange, 25px -9px 38px lime, 21px 8px 48px lime, 22px -20px 31px blue, -22px -19px 31px magenta, -29px -24px 49px lime, 22px -1px 15px orange;
  }

  24.4% {
    transform: scale(1.81) rotate(602.6deg) skew(36.0deg, 58.7deg) translate(46.9px, -70.5px);
    filter: hue-rotate(146.9deg) blur(7.4px) saturate(201%);
    opacity: 0.33;
    background: magenta;
    text-shadow: -1px -15px 18px magenta, 21px -17px 22px purple, 20px -15px 47px lime, -27px -21px 15px orange, 24px 24px 16px red, -18px 28px 21px red, -28px 0px 18px pink, 19px 20px 28px orange, -3px -24px 7px pink, -14px -14px 27px cyan;
  }

  24.5% {
    transform: scale(1.35) rotate(-165.2deg) skew(29.1deg, -2.1deg) translate(15.6px, 89.9px);
    filter: hue-rotate(238.8deg) blur(7.8px) saturate(61%);
    opacity: 0.91;
    background: purple;
    text-shadow: 18px -17px 32px purple, 11px -5px 29px magenta, 3px 5px 31px magenta, 11px -3px 26px magenta, -9px -17px 33px lime, -24px -3px 47px orange, 27px 24px 48px pink, -29px 29px 38px yellow, -10px -12px 15px pink, -6px -29px 25px red;
  }

  24.6% {
    transform: scale(1.88) rotate(-31.2deg) skew(37.8deg, -4.8deg) translate(-39.8px, 28.1px);
    filter: hue-rotate(355.1deg) blur(1.4px) saturate(280%);
    opacity: 0.88;
    background: blue;
    text-shadow: 17px 26px 12px blue, 28px 17px 12px yellow, 22px -13px 16px lime, 29px -25px 8px yellow, -25px -4px 25px red, 8px 20px 27px purple, 20px 26px 26px yellow, -19px 1px 36px red, 8px -13px 5px magenta, -3px -10px 45px pink;
  }

  24.7% {
    transform: scale(0.61) rotate(-579.8deg) skew(-38.6deg, 24.4deg) translate(-77.8px, 85.1px);
    filter: hue-rotate(101.5deg) blur(8.9px) saturate(148%);
    opacity: 0.52;
    background: lime;
    text-shadow: 16px -30px 5px blue, -24px -30px 29px yellow, 7px 4px 38px orange, 2px -17px 43px yellow, 1px -16px 17px purple, -6px -10px 37px red, -30px -19px 22px red, 30px -16px 32px lime, 13px -22px 39px red, -27px 16px 24px lime;
  }

  24.8% {
    transform: scale(1.38) rotate(586.5deg) skew(-28.5deg, 12.5deg) translate(85.8px, -50.4px);
    filter: hue-rotate(140.2deg) blur(2.8px) saturate(146%);
    opacity: 0.66;
    background: cyan;
    text-shadow: 5px 9px 40px yellow, 19px 29px 17px purple, 22px -17px 13px purple, -12px -18px 12px lime, -16px -8px 11px pink, 17px 3px 46px orange, 21px 15px 16px lime, 30px 8px 21px blue, 6px 4px 40px yellow, -29px -12px 13px #ff0080;
  }

  24.9% {
    transform: scale(1.14) rotate(620.7deg) skew(14.1deg, -36.5deg) translate(-59.6px, 0.8px);
    filter: hue-rotate(345.8deg) blur(7.3px) saturate(134%);
    opacity: 0.7;
    background: #ff0080;
    text-shadow: -20px -11px 26px blue, -12px -28px 8px red, -20px -6px 48px blue, 17px 3px 31px lime, 2px -1px 47px #ff0080, -14px 9px 12px purple, -6px -14px 27px magenta, 26px -5px 28px cyan, -19px -7px 40px red, -28px -12px 39px orange;
  }

  25.0% {
    transform: scale(1.26) rotate(-650.7deg) skew(49.3deg, -64.4deg) translate(-96.1px, 78.7px);
    filter: hue-rotate(354.8deg) blur(9.4px) saturate(74%);
    opacity: 0.53;
    background: magenta;
    text-shadow: 13px -29px 26px pink, 27px -14px 30px blue, -22px -2px 36px orange, 7px -28px 25px blue, 8px -10px 25px pink, 2px -9px 38px #ff0080, -29px 6px 47px orange, -1px -9px 28px cyan, -19px -7px 29px pink, -15px 7px 10px yellow;
  }

  25.1% {
    transform: scale(1.09) rotate(347.1deg) skew(-44.5deg, 62.6deg) translate(78.4px, 44.1px);
    filter: hue-rotate(272.9deg) blur(0.2px) saturate(180%);
    opacity: 0.73;
    background: lime;
    text-shadow: 17px 26px 11px orange, 13px 18px 20px orange, 22px -6px 19px pink, -27px 11px 11px lime, 25px -24px 20px purple, 29px 10px 48px pink, -13px -1px 44px cyan, -20px 3px 8px #ff0080, -25px 13px 40px cyan, -12px 0px 32px purple;
  }

  25.2% {
    transform: scale(0.79) rotate(53.4deg) skew(6.9deg, 58.0deg) translate(7.3px, -22.8px);
    filter: hue-rotate(189.1deg) blur(9.8px) saturate(77%);
    opacity: 0.43;
    background: lime;
    text-shadow: -9px 12px 29px #ff0080, 6px -29px 47px purple, 12px 6px 5px magenta, 6px -10px 20px blue, 3px -28px 38px orange, -17px 9px 25px #ff0080, -10px 15px 10px purple, -17px -27px 26px yellow, 1px 19px 15px purple, 7px 20px 26px pink;
  }

  25.3% {
    transform: scale(1.67) rotate(-47.8deg) skew(53.6deg, 40.5deg) translate(-66.4px, -92.2px);
    filter: hue-rotate(196.0deg) blur(1.4px) saturate(122%);
    opacity: 0.3;
    background: cyan;
    text-shadow: 0px -29px 35px yellow, -27px -2px 47px lime, -13px -23px 18px orange, 28px -17px 29px magenta, 29px 10px 34px #ff0080, 24px 8px 20px pink, -27px 4px 12px cyan, 23px 4px 45px blue, -4px 9px 26px orange, 3px -15px 21px pink;
  }

  25.4% {
    transform: scale(0.91) rotate(491.1deg) skew(9.1deg, 11.8deg) translate(87.5px, 71.0px);
    filter: hue-rotate(52.3deg) blur(3.8px) saturate(222%);
    opacity: 0.34;
    background: #ff0080;
    text-shadow: -25px 5px 9px #ff0080, 28px 2px 18px magenta, 28px -21px 25px blue, 16px -7px 23px red, -20px 7px 21px red, -7px -14px 49px magenta, -22px 9px 7px blue, 1px -21px 48px blue, -24px 4px 6px yellow, -16px 6px 32px yellow;
  }

  25.5% {
    transform: scale(1.03) rotate(574.1deg) skew(41.9deg, 5.9deg) translate(89.8px, 7.5px);
    filter: hue-rotate(115.6deg) blur(0.9px) saturate(53%);
    opacity: 0.82;
    background: cyan;
    text-shadow: -9px 19px 20px blue, 17px -28px 20px lime, -15px -4px 47px #ff0080, -13px -8px 32px blue, -28px 19px 32px red, 7px 25px 25px blue, 10px 27px 17px red, 4px 4px 15px yellow, -21px -15px 10px red, -3px -30px 26px blue;
  }

  25.6% {
    transform: scale(0.72) rotate(-686.8deg) skew(-1.8deg, -34.2deg) translate(-97.7px, -85.9px);
    filter: hue-rotate(228.4deg) blur(3.2px) saturate(285%);
    opacity: 0.98;
    background: magenta;
    text-shadow: 18px -10px 16px pink, 17px -20px 13px pink, -19px 10px 32px #ff0080, 24px -13px 47px orange, -29px -17px 48px cyan, 6px 27px 22px blue, 26px 1px 29px purple, -23px -4px 39px orange, -1px 8px 17px yellow, -23px -4px 21px lime;
  }

  25.7% {
    transform: scale(1.98) rotate(-711.7deg) skew(-8.5deg, 19.6deg) translate(-63.1px, 40.9px);
    filter: hue-rotate(233.5deg) blur(9.7px) saturate(216%);
    opacity: 0.36;
    background: cyan;
    text-shadow: 10px -21px 50px magenta, -3px 1px 38px #ff0080, 9px -19px 27px lime, 22px -14px 19px orange, -9px 29px 34px orange, 18px -2px 27px purple, 2px 1px 30px blue, -17px -24px 37px orange, -5px 25px 10px cyan, 17px -23px 15px blue;
  }

  25.8% {
    transform: scale(1.11) rotate(497.8deg) skew(76.6deg, -14.1deg) translate(-12.4px, 77.4px);
    filter: hue-rotate(166.6deg) blur(1.6px) saturate(168%);
    opacity: 0.92;
    background: blue;
    text-shadow: -5px -30px 36px blue, 18px 23px 44px #ff0080, 1px -6px 16px magenta, 28px -6px 32px orange, 2px -21px 38px pink, 3px 8px 34px #ff0080, 17px -16px 26px lime, 10px -30px 18px magenta, 27px 15px 47px yellow, 23px 1px 23px pink;
  }

  25.9% {
    transform: scale(1.43) rotate(176.8deg) skew(3.5deg, 39.2deg) translate(-75.4px, 58.4px);
    filter: hue-rotate(60.7deg) blur(2.2px) saturate(93%);
    opacity: 0.5;
    background: cyan;
    text-shadow: -2px 7px 9px orange, -14px 3px 34px red, 0px -29px 45px cyan, -10px -13px 13px purple, 1px 16px 39px red, -6px 16px 29px blue, 10px -7px 31px magenta, -13px -27px 48px magenta, -11px 12px 48px blue, -9px -21px 31px #ff0080;
  }

  26.0% {
    transform: scale(0.73) rotate(-166.8deg) skew(-66.1deg, 18.7deg) translate(-73.3px, 39.7px);
    filter: hue-rotate(170.1deg) blur(7.7px) saturate(230%);
    opacity: 0.8;
    background: red;
    text-shadow: -4px -12px 28px purple, 28px -4px 15px pink, -21px 26px 25px magenta, -20px -9px 34px red, 1px 0px 26px #ff0080, -10px -23px 27px yellow, 30px -21px 38px magenta, -18px 2px 24px red, 15px 2px 9px magenta, 0px -22px 31px magenta;
  }

  26.1% {
    transform: scale(1.99) rotate(174.1deg) skew(-5.1deg, 63.9deg) translate(22.9px, 65.6px);
    filter: hue-rotate(26.2deg) blur(9.5px) saturate(213%);
    opacity: 0.33;
    background: purple;
    text-shadow: -22px 4px 27px magenta, 25px -13px 28px lime, 8px -17px 38px magenta, -17px 17px 25px pink, -5px -5px 35px lime, -15px 6px 17px blue, -11px 17px 27px blue, -4px -11px 40px #ff0080, 16px -29px 14px blue, 4px -2px 7px blue;
  }

  26.2% {
    transform: scale(1.2) rotate(-254.7deg) skew(27.9deg, 73.5deg) translate(9.7px, 4.9px);
    filter: hue-rotate(305.9deg) blur(6.2px) saturate(194%);
    opacity: 0.78;
    background: lime;
    text-shadow: -2px 11px 29px red, -2px -25px 41px purple, -17px 16px 15px yellow, -19px 5px 50px yellow, 26px 0px 7px orange, -9px -3px 44px magenta, -13px 17px 45px #ff0080, 20px 10px 22px cyan, 27px -19px 14px orange, -27px 15px 44px cyan;
  }

  26.3% {
    transform: scale(1.57) rotate(429.9deg) skew(81.2deg, 61.3deg) translate(-87.4px, 44.3px);
    filter: hue-rotate(253.9deg) blur(9.1px) saturate(269%);
    opacity: 0.48;
    background: yellow;
    text-shadow: 15px 2px 45px red, -14px -12px 35px blue, 20px -5px 50px purple, -16px -11px 50px yellow, 20px -21px 18px blue, -4px -23px 31px #ff0080, 13px 15px 26px yellow, -25px -24px 12px lime, 14px -1px 38px magenta, 30px -22px 34px magenta;
  }

  26.4% {
    transform: scale(1.14) rotate(611.0deg) skew(33.2deg, -42.5deg) translate(90.9px, -34.1px);
    filter: hue-rotate(307.3deg) blur(4.1px) saturate(288%);
    opacity: 0.71;
    background: orange;
    text-shadow: -29px 4px 22px red, 26px 11px 19px yellow, -26px 25px 14px red, 0px 8px 50px orange, -17px 22px 22px magenta, -2px 19px 24px lime, -25px -8px 35px lime, 22px -9px 32px magenta, 20px 21px 24px cyan, 2px -27px 13px magenta;
  }

  26.5% {
    transform: scale(1.22) rotate(330.9deg) skew(87.6deg, 81.5deg) translate(-46.8px, 8.7px);
    filter: hue-rotate(105.3deg) blur(0.3px) saturate(68%);
    opacity: 0.45;
    background: pink;
    text-shadow: -5px 6px 35px cyan, -21px -13px 18px cyan, -16px 29px 12px lime, -22px -16px 38px yellow, 19px -25px 19px magenta, 2px -8px 47px red, 27px -1px 16px orange, 4px -11px 34px pink, 24px 29px 14px pink, 23px 13px 29px magenta;
  }

  26.6% {
    transform: scale(1.25) rotate(20.6deg) skew(-35.3deg, 1.1deg) translate(-62.1px, -57.9px);
    filter: hue-rotate(72.7deg) blur(4.8px) saturate(184%);
    opacity: 0.91;
    background: red;
    text-shadow: 30px -22px 10px red, -28px -5px 10px purple, -7px 9px 19px blue, 4px 11px 17px blue, 19px 10px 5px purple, 16px -24px 46px yellow, -3px -24px 37px red, -23px -28px 5px blue, -5px -28px 7px #ff0080, -7px -22px 12px orange;
  }

  26.7% {
    transform: scale(0.5) rotate(-261.3deg) skew(-35.7deg, -63.0deg) translate(30.4px, -37.6px);
    filter: hue-rotate(338.7deg) blur(4.0px) saturate(226%);
    opacity: 0.65;
    background: orange;
    text-shadow: 19px 14px 11px cyan, -29px 16px 20px #ff0080, -23px -25px 46px magenta, 6px 30px 5px cyan, 28px 17px 16px pink, -10px 26px 8px red, -14px 13px 50px pink, -14px -21px 9px #ff0080, -6px 16px 6px lime, -26px 22px 44px orange;
  }

  26.8% {
    transform: scale(2.0) rotate(-657.7deg) skew(9.5deg, -31.5deg) translate(85.3px, -26.9px);
    filter: hue-rotate(26.6deg) blur(3.5px) saturate(50%);
    opacity: 0.78;
    background: magenta;
    text-shadow: 21px 23px 35px blue, 18px -25px 6px lime, -28px -15px 32px pink, 26px -12px 23px lime, -27px -4px 7px red, 22px 24px 19px #ff0080, -24px 9px 46px blue, -11px 26px 35px lime, -26px 21px 12px lime, -25px -13px 44px yellow;
  }

  26.9% {
    transform: scale(0.78) rotate(628.8deg) skew(-46.5deg, 40.6deg) translate(20.9px, 45.8px);
    filter: hue-rotate(319.3deg) blur(8.2px) saturate(115%);
    opacity: 0.44;
    background: purple;
    text-shadow: 12px 13px 40px orange, -16px 12px 46px cyan, -30px -1px 45px purple, -17px -29px 35px #ff0080, -26px 14px 7px magenta, 19px -22px 45px red, 2px 19px 20px pink, 21px -13px 10px magenta, -29px -12px 14px yellow, 0px 6px 15px pink;
  }

  27.0% {
    transform: scale(0.63) rotate(292.2deg) skew(-3.2deg, 20.4deg) translate(82.1px, 24.4px);
    filter: hue-rotate(250.3deg) blur(1.8px) saturate(206%);
    opacity: 0.5;
    background: magenta;
    text-shadow: 12px -2px 32px magenta, -15px -1px 47px cyan, 25px -5px 48px yellow, 30px -8px 49px #ff0080, -19px -19px 27px #ff0080, -8px 10px 47px #ff0080, 24px 8px 22px purple, 30px -24px 26px cyan, -19px -23px 30px red, 28px 6px 12px lime;
  }

  27.1% {
    transform: scale(1.89) rotate(290.1deg) skew(84.1deg, -26.3deg) translate(18.1px, 88.8px);
    filter: hue-rotate(118.6deg) blur(8.9px) saturate(291%);
    opacity: 0.57;
    background: lime;
    text-shadow: 17px 4px 30px lime, 2px -5px 24px cyan, 23px 26px 44px orange, -30px -6px 38px cyan, -18px -29px 27px yellow, 18px -8px 40px cyan, -27px -7px 42px pink, -10px -22px 49px cyan, -2px 11px 33px red, 23px -16px 7px blue;
  }

  27.2% {
    transform: scale(1.18) rotate(527.5deg) skew(38.8deg, 36.1deg) translate(-71.9px, 23.4px);
    filter: hue-rotate(307.1deg) blur(2.8px) saturate(156%);
    opacity: 0.62;
    background: blue;
    text-shadow: 20px -6px 47px pink, -2px 15px 48px yellow, 29px -20px 11px magenta, 2px 26px 35px #ff0080, -5px -6px 43px purple, -19px -23px 14px lime, -23px 0px 45px purple, -21px 0px 24px magenta, -29px 9px 43px blue, -23px 11px 44px pink;
  }

  27.3% {
    transform: scale(1.3) rotate(-41.3deg) skew(-31.5deg, -88.1deg) translate(-81.6px, -28.7px);
    filter: hue-rotate(3.0deg) blur(7.4px) saturate(289%);
    opacity: 0.81;
    background: magenta;
    text-shadow: -10px 3px 39px purple, -27px 6px 41px red, 30px -21px 28px pink, 21px -1px 31px red, -17px 19px 25px purple, 29px -24px 17px magenta, 24px -22px 21px blue, -13px 4px 36px blue, 7px 15px 50px blue, -24px 15px 8px lime;
  }

  27.4% {
    transform: scale(1.66) rotate(556.6deg) skew(-46.2deg, -47.3deg) translate(63.2px, -4.7px);
    filter: hue-rotate(91.6deg) blur(4.1px) saturate(89%);
    opacity: 0.82;
    background: blue;
    text-shadow: 2px 23px 24px red, 12px -1px 9px red, -29px 21px 44px pink, 8px 15px 48px magenta, -8px 15px 35px lime, 3px 0px 29px cyan, 3px 8px 42px orange, 18px -30px 25px orange, 14px 29px 25px #ff0080, -1px 25px 18px lime;
  }

  27.5% {
    transform: scale(1.12) rotate(-90.3deg) skew(26.9deg, -43.9deg) translate(-55.2px, -3.3px);
    filter: hue-rotate(340.6deg) blur(8.0px) saturate(242%);
    opacity: 0.93;
    background: blue;
    text-shadow: 9px 15px 14px orange, 19px 18px 39px blue, -23px -5px 22px purple, 14px 12px 32px red, -1px 10px 23px red, 0px 16px 10px orange, 6px 25px 6px lime, -16px -25px 27px purple, -28px -20px 19px red, -8px 11px 34px yellow;
  }

  27.6% {
    transform: scale(1.18) rotate(-102.0deg) skew(10.7deg, -22.7deg) translate(66.6px, -53.2px);
    filter: hue-rotate(246.8deg) blur(9.4px) saturate(298%);
    opacity: 0.34;
    background: blue;
    text-shadow: -23px -13px 39px blue, 23px 20px 13px purple, -30px -22px 40px lime, 0px 26px 47px #ff0080, -18px 5px 12px cyan, 14px -24px 50px pink, -24px -26px 8px cyan, -24px -10px 42px lime, 3px -6px 36px lime, -30px 0px 11px lime;
  }

  27.7% {
    transform: scale(1.49) rotate(93.7deg) skew(19.2deg, 74.5deg) translate(-32.4px, -28.7px);
    filter: hue-rotate(254.9deg) blur(3.5px) saturate(195%);
    opacity: 0.63;
    background: lime;
    text-shadow: 28px -1px 13px purple, 14px -20px 28px red, 26px 21px 13px purple, 30px -5px 50px magenta, 5px -1px 46px #ff0080, -22px 30px 22px #ff0080, -7px 9px 16px magenta, 11px -25px 13px yellow, -5px 14px 24px blue, -23px -9px 47px lime;
  }

  27.8% {
    transform: scale(1.87) rotate(-506.8deg) skew(65.7deg, 82.1deg) translate(67.5px, -83.8px);
    filter: hue-rotate(106.5deg) blur(3.7px) saturate(152%);
    opacity: 0.34;
    background: orange;
    text-shadow: -18px -9px 44px pink, -3px 6px 35px red, -13px -14px 36px purple, -8px 13px 18px lime, -3px -20px 39px purple, -17px 23px 20px magenta, 2px -11px 10px cyan, 24px -27px 8px #ff0080, -20px 6px 38px pink, 14px -1px 32px #ff0080;
  }

  27.9% {
    transform: scale(1.0) rotate(411.8deg) skew(10.6deg, 55.6deg) translate(-66.5px, -77.4px);
    filter: hue-rotate(283.8deg) blur(5.5px) saturate(260%);
    opacity: 0.66;
    background: lime;
    text-shadow: 7px -4px 36px yellow, 6px 13px 42px lime, 29px -12px 40px pink, 27px 19px 8px red, -19px -4px 43px lime, -26px -10px 22px pink, 22px -6px 24px orange, -22px 2px 29px red, -8px -24px 27px red, -16px 5px 21px orange;
  }

  28.0% {
    transform: scale(1.09) rotate(-81.9deg) skew(34.1deg, -60.1deg) translate(-65.8px, 18.7px);
    filter: hue-rotate(222.3deg) blur(4.5px) saturate(65%);
    opacity: 0.87;
    background: yellow;
    text-shadow: -10px -14px 28px cyan, -16px -17px 38px blue, 16px 13px 6px purple, 2px 5px 10px red, 0px -19px 40px orange, -30px -17px 30px lime, -25px 11px 13px cyan, -27px 5px 24px pink, 13px -3px 14px #ff0080, 2px -26px 49px blue;
  }

  28.1% {
    transform: scale(1.2) rotate(-67.4deg) skew(-50.2deg, -21.0deg) translate(-64.9px, -20.9px);
    filter: hue-rotate(294.2deg) blur(2.1px) saturate(270%);
    opacity: 0.75;
    background: red;
    text-shadow: 3px 13px 14px red, -24px 16px 16px lime, -17px 22px 13px lime, 6px 25px 12px lime, -4px 10px 33px magenta, -28px 10px 42px lime, -19px 26px 50px magenta, -13px -9px 42px lime, 15px 26px 24px red, -25px -17px 31px red;
  }

  28.2% {
    transform: scale(1.09) rotate(448.7deg) skew(1.3deg, 1.6deg) translate(50.3px, 57.0px);
    filter: hue-rotate(177.3deg) blur(8.4px) saturate(99%);
    opacity: 0.94;
    background: #ff0080;
    text-shadow: -11px 10px 29px magenta, 24px -3px 21px orange, 6px -8px 47px cyan, -5px 1px 44px magenta, -23px 19px 28px pink, 11px -12px 41px orange, -2px 10px 40px red, -9px 15px 6px red, -25px -5px 48px lime, 25px -19px 32px magenta;
  }

  28.3% {
    transform: scale(0.51) rotate(632.8deg) skew(-48.3deg, 18.0deg) translate(8.5px, -86.5px);
    filter: hue-rotate(209.3deg) blur(6.4px) saturate(160%);
    opacity: 0.3;
    background: cyan;
    text-shadow: -8px 24px 43px orange, 18px -21px 18px yellow, -28px 7px 14px blue, 14px 21px 50px yellow, -11px 19px 31px cyan, 19px 12px 5px yellow, 7px 17px 41px lime, -2px 12px 31px red, 1px -8px 6px purple, 5px -25px 38px blue;
  }

  28.4% {
    transform: scale(1.13) rotate(-86.3deg) skew(-12.5deg, 22.8deg) translate(52.7px, 76.1px);
    filter: hue-rotate(252.7deg) blur(2.0px) saturate(209%);
    opacity: 0.62;
    background: #ff0080;
    text-shadow: 22px -16px 24px magenta, -19px 2px 49px #ff0080, 3px -6px 8px red, 29px 17px 6px blue, -19px -17px 5px red, -8px -3px 44px red, 9px -27px 30px yellow, 25px -16px 49px orange, 1px 4px 29px cyan, -15px -6px 34px cyan;
  }

  28.5% {
    transform: scale(1.86) rotate(-177.1deg) skew(16.1deg, -18.9deg) translate(-66.7px, 66.0px);
    filter: hue-rotate(306.0deg) blur(2.5px) saturate(214%);
    opacity: 0.37;
    background: #ff0080;
    text-shadow: -27px 17px 41px #ff0080, -21px -3px 8px orange, -16px -30px 19px lime, -13px 9px 36px yellow, 16px 4px 38px orange, 18px 23px 27px cyan, -4px -25px 16px pink, -23px -20px 50px #ff0080, 23px -21px 11px lime, -11px -6px 8px lime;
  }

  28.6% {
    transform: scale(0.72) rotate(-121.7deg) skew(43.6deg, 43.7deg) translate(55.7px, -94.1px);
    filter: hue-rotate(109.3deg) blur(3.4px) saturate(186%);
    opacity: 0.52;
    background: purple;
    text-shadow: -26px 4px 14px pink, 13px -15px 17px orange, -19px 3px 18px red, 0px 8px 44px cyan, -23px -2px 30px lime, -3px 14px 19px red, -24px -27px 38px #ff0080, 28px 24px 8px orange, -8px -23px 16px yellow, 25px 2px 21px #ff0080;
  }

  28.7% {
    transform: scale(1.23) rotate(443.8deg) skew(-7.2deg, -58.6deg) translate(-61.1px, -73.3px);
    filter: hue-rotate(266.7deg) blur(7.1px) saturate(141%);
    opacity: 0.77;
    background: #ff0080;
    text-shadow: 2px -28px 42px blue, -16px 9px 50px yellow, -27px -3px 42px pink, -12px 21px 20px orange, -26px -1px 7px yellow, 13px 27px 49px blue, 28px -2px 45px red, 5px -20px 38px orange, -18px -11px 15px lime, -23px 30px 30px lime;
  }

  28.8% {
    transform: scale(1.84) rotate(-386.1deg) skew(-59.8deg, 89.0deg) translate(26.9px, 4.1px);
    filter: hue-rotate(32.7deg) blur(9.3px) saturate(293%);
    opacity: 0.83;
    background: orange;
    text-shadow: 11px 5px 49px purple, -30px -9px 28px red, 3px -6px 17px #ff0080, 30px -4px 30px orange, -28px -18px 41px red, -24px 11px 12px red, -12px -11px 23px lime, 19px 9px 38px #ff0080, -16px -25px 42px yellow, 30px -3px 19px magenta;
  }

  28.9% {
    transform: scale(1.66) rotate(-354.0deg) skew(-58.6deg, -81.6deg) translate(64.0px, -3.6px);
    filter: hue-rotate(235.3deg) blur(0.4px) saturate(148%);
    opacity: 0.88;
    background: lime;
    text-shadow: 6px 27px 46px yellow, 3px 9px 49px pink, 22px 8px 42px orange, -9px 0px 19px pink, -24px -10px 37px lime, 11px -26px 37px purple, -13px 23px 43px purple, -1px 12px 42px pink, 24px -18px 13px purple, -24px -10px 12px #ff0080;
  }

  29.0% {
    transform: scale(1.6) rotate(-397.9deg) skew(-62.4deg, 43.2deg) translate(-33.4px, -55.5px);
    filter: hue-rotate(91.5deg) blur(7.6px) saturate(293%);
    opacity: 0.98;
    background: #ff0080;
    text-shadow: 5px 26px 49px blue, 25px -14px 32px orange, -5px -22px 50px red, -7px 21px 23px magenta, -12px -25px 12px lime, -8px 26px 39px pink, 30px -4px 50px purple, -29px -11px 13px red, 22px 3px 26px red, -27px 24px 46px orange;
  }

  29.1% {
    transform: scale(1.92) rotate(294.6deg) skew(56.1deg, -52.2deg) translate(26.6px, 64.1px);
    filter: hue-rotate(199.6deg) blur(3.3px) saturate(289%);
    opacity: 0.73;
    background: lime;
    text-shadow: -3px -18px 38px purple, 19px 14px 11px lime, 18px 2px 39px orange, 3px 28px 47px blue, -22px -9px 49px yellow, 29px -14px 6px red, -22px 15px 39px orange, 10px 10px 16px magenta, -12px 21px 33px purple, -3px 13px 47px #ff0080;
  }

  29.2% {
    transform: scale(0.97) rotate(542.4deg) skew(77.2deg, 85.8deg) translate(-22.5px, -43.4px);
    filter: hue-rotate(142.1deg) blur(6.0px) saturate(191%);
    opacity: 0.91;
    background: magenta;
    text-shadow: 7px 5px 34px #ff0080, 10px -8px 39px magenta, -6px -1px 5px lime, 20px -12px 11px lime, 12px -19px 39px lime, 10px -27px 10px blue, -14px -25px 41px yellow, 13px -15px 47px lime, 29px -14px 34px pink, 30px 28px 7px lime;
  }

  29.3% {
    transform: scale(1.97) rotate(-180.4deg) skew(-38.5deg, 47.4deg) translate(87.4px, -54.3px);
    filter: hue-rotate(245.5deg) blur(8.2px) saturate(51%);
    opacity: 0.46;
    background: lime;
    text-shadow: 17px 7px 43px red, 7px 28px 42px yellow, -2px 6px 7px magenta, -6px 29px 15px magenta, -12px 29px 34px blue, -14px 3px 16px orange, 13px 26px 33px cyan, -29px -6px 18px #ff0080, 17px -26px 9px red, 25px 11px 14px lime;
  }

  29.4% {
    transform: scale(1.77) rotate(-707.6deg) skew(-38.8deg, 49.7deg) translate(42.5px, -63.7px);
    filter: hue-rotate(106.6deg) blur(6.7px) saturate(265%);
    opacity: 0.66;
    background: lime;
    text-shadow: -6px 6px 43px lime, -22px 0px 34px purple, 4px 1px 6px red, 4px 18px 32px magenta, -20px 15px 50px cyan, 26px -24px 30px magenta, -9px 18px 49px #ff0080, 5px -12px 30px blue, 14px 15px 37px pink, 9px 14px 9px purple;
  }

  29.5% {
    transform: scale(1.49) rotate(52.8deg) skew(-27.0deg, 89.6deg) translate(-96.0px, 51.2px);
    filter: hue-rotate(182.8deg) blur(4.4px) saturate(74%);
    opacity: 0.58;
    background: magenta;
    text-shadow: 22px 13px 48px blue, -28px 30px 11px blue, -10px 13px 43px cyan, -11px -6px 13px magenta, -9px 3px 25px #ff0080, 19px 14px 20px orange, 29px 26px 44px yellow, 12px 13px 27px #ff0080, 21px -6px 7px blue, -20px 30px 35px purple;
  }

  29.6% {
    transform: scale(1.3) rotate(275.6deg) skew(-21.4deg, -58.3deg) translate(-31.0px, 77.7px);
    filter: hue-rotate(144.3deg) blur(9.7px) saturate(121%);
    opacity: 0.95;
    background: lime;
    text-shadow: 7px 17px 33px yellow, 3px 0px 49px orange, 11px 25px 45px orange, -24px 5px 13px yellow, -20px -3px 48px magenta, 21px -16px 38px yellow, -10px -3px 43px red, 26px -3px 43px magenta, -1px -21px 12px yellow, -22px -6px 21px cyan;
  }

  29.7% {
    transform: scale(1.95) rotate(-648.3deg) skew(61.0deg, -26.3deg) translate(65.8px, -45.7px);
    filter: hue-rotate(119.4deg) blur(7.3px) saturate(52%);
    opacity: 0.39;
    background: purple;
    text-shadow: 0px 4px 23px red, 6px 16px 49px magenta, 7px 16px 27px magenta, 6px -28px 16px blue, 16px -6px 32px orange, 25px -28px 37px lime, -30px 9px 47px pink, -19px 2px 39px blue, -12px -17px 38px red, 22px -25px 18px yellow;
  }

  29.8% {
    transform: scale(0.63) rotate(-624.3deg) skew(-30.2deg, -60.2deg) translate(-26.7px, 12.6px);
    filter: hue-rotate(9.1deg) blur(2.0px) saturate(218%);
    opacity: 0.59;
    background: lime;
    text-shadow: -20px 24px 24px pink, -24px 1px 11px pink, 13px -22px 16px pink, 27px -4px 48px yellow, 21px -2px 27px magenta, -13px 1px 21px #ff0080, -8px -5px 7px pink, 27px 3px 42px cyan, 7px -17px 33px purple, -20px -11px 48px cyan;
  }

  29.9% {
    transform: scale(1.21) rotate(-720.0deg) skew(27.9deg, -48.8deg) translate(25.8px, -55.0px);
    filter: hue-rotate(80.6deg) blur(0.9px) saturate(204%);
    opacity: 0.83;
    background: yellow;
    text-shadow: -7px -4px 30px magenta, 0px 17px 34px lime, -21px 10px 38px #ff0080, 21px -10px 6px purple, 10px -21px 14px pink, -23px -10px 34px lime, -21px -19px 24px cyan, -1px -20px 29px pink, -16px -7px 31px pink, 27px 19px 22px blue;
  }

  30.0% {
    transform: scale(0.63) rotate(651.8deg) skew(-11.7deg, 7.6deg) translate(-0.4px, 72.6px);
    filter: hue-rotate(77.8deg) blur(2.5px) saturate(299%);
    opacity: 0.98;
    background: magenta;
    text-shadow: -17px -22px 24px purple, 20px 16px 49px magenta, 20px -8px 29px cyan, 6px -20px 46px cyan, -13px -10px 37px magenta, 13px -26px 39px purple, -6px -1px 41px #ff0080, -10px 4px 16px yellow, -19px 8px 13px pink, 11px 8px 37px magenta;
  }

  30.1% {
    transform: scale(1.77) rotate(282.0deg) skew(-45.5deg, 28.3deg) translate(-78.5px, -31.2px);
    filter: hue-rotate(249.2deg) blur(7.0px) saturate(138%);
    opacity: 0.63;
    background: pink;
    text-shadow: 1px 17px 28px orange, -27px 4px 33px purple, -13px 22px 45px red, 8px 24px 46px cyan, 12px 2px 13px purple, -8px 28px 46px pink, -17px -18px 11px red, 17px 18px 29px orange, 7px 30px 33px red, -20px -2px 22px yellow;
  }

  30.2% {
    transform: scale(0.5) rotate(-191.7deg) skew(16.3deg, -62.9deg) translate(79.6px, -20.7px);
    filter: hue-rotate(34.8deg) blur(9.0px) saturate(215%);
    opacity: 0.92;
    background: #ff0080;
    text-shadow: -5px 3px 11px blue, -29px 27px 21px pink, 29px -25px 24px orange, -28px -28px 18px yellow, 14px 15px 22px blue, -13px -25px 41px cyan, 5px -30px 37px lime, -22px -3px 39px cyan, 16px -21px 26px cyan, -9px -26px 16px purple;
  }

  30.3% {
    transform: scale(0.62) rotate(296.7deg) skew(44.5deg, -53.2deg) translate(-25.8px, -79.0px);
    filter: hue-rotate(3.9deg) blur(2.9px) saturate(158%);
    opacity: 0.82;
    background: orange;
    text-shadow: -1px 3px 24px orange, 9px -15px 14px purple, 25px -15px 49px #ff0080, -23px -23px 10px cyan, -18px 26px 29px lime, -18px 19px 34px blue, 1px -15px 27px purple, 1px -11px 15px red, 7px 9px 7px pink, 4px 23px 9px orange;
  }

  30.4% {
    transform: scale(1.22) rotate(-315.3deg) skew(17.3deg, -35.3deg) translate(-59.8px, 82.5px);
    filter: hue-rotate(170.2deg) blur(3.9px) saturate(179%);
    opacity: 0.99;
    background: purple;
    text-shadow: -26px 6px 42px pink, 16px 7px 17px orange, -18px 16px 49px yellow, 3px -10px 30px cyan, -11px -1px 34px purple, -29px 15px 22px lime, -5px 15px 43px #ff0080, 27px 4px 9px magenta, 21px -30px 17px magenta, 13px 14px 48px purple;
  }

  30.5% {
    transform: scale(1.87) rotate(349.6deg) skew(33.0deg, 26.7deg) translate(86.9px, -5.1px);
    filter: hue-rotate(288.5deg) blur(2.2px) saturate(156%);
    opacity: 0.92;
    background: red;
    text-shadow: -19px -17px 26px yellow, 3px -27px 6px red, -21px -25px 33px red, -17px -4px 14px cyan, -17px 16px 14px pink, 24px -5px 7px cyan, 14px -4px 9px red, 26px 23px 39px red, -15px 23px 47px magenta, 0px 26px 14px red;
  }

  30.6% {
    transform: scale(0.92) rotate(-545.3deg) skew(83.9deg, -83.5deg) translate(-75.6px, -2.9px);
    filter: hue-rotate(110.0deg) blur(4.9px) saturate(278%);
    opacity: 0.66;
    background: pink;
    text-shadow: -24px -23px 26px cyan, 8px 12px 21px yellow, 28px 11px 9px pink, 3px 11px 48px orange, 28px 24px 50px purple, -8px -3px 23px orange, -20px -26px 8px blue, 15px 25px 31px blue, 27px -19px 31px cyan, 6px 25px 45px blue;
  }

  30.7% {
    transform: scale(1.75) rotate(453.8deg) skew(74.9deg, -59.9deg) translate(51.5px, -79.6px);
    filter: hue-rotate(314.8deg) blur(5.4px) saturate(115%);
    opacity: 0.62;
    background: yellow;
    text-shadow: 13px 21px 42px pink, -19px -14px 8px yellow, -20px 15px 28px pink, -10px -29px 45px red, 22px -8px 13px pink, -18px 20px 27px blue, -24px -5px 8px red, 27px 0px 6px cyan, 10px -28px 35px orange, 20px -6px 29px orange;
  }

  30.8% {
    transform: scale(1.76) rotate(-520.6deg) skew(-62.7deg, 76.5deg) translate(-20.0px, -79.1px);
    filter: hue-rotate(292.2deg) blur(8.9px) saturate(258%);
    opacity: 0.99;
    background: lime;
    text-shadow: 7px -18px 25px cyan, -5px -5px 39px pink, 26px 26px 34px yellow, 7px -14px 32px red, 5px 6px 16px lime, -13px 11px 29px pink, 30px -11px 21px orange, -13px -19px 49px purple, -16px 14px 10px orange, 27px -8px 41px cyan;
  }

  30.9% {
    transform: scale(1.75) rotate(426.9deg) skew(-40.4deg, 82.3deg) translate(0.7px, -46.0px);
    filter: hue-rotate(241.5deg) blur(9.5px) saturate(149%);
    opacity: 0.9;
    background: lime;
    text-shadow: -29px 18px 47px pink, -5px 22px 9px red, -14px 5px 43px yellow, -5px 3px 23px red, -29px -21px 14px lime, 17px -21px 23px blue, -3px -12px 6px pink, -1px 19px 44px #ff0080, 13px -16px 25px purple, -18px -2px 13px pink;
  }

  31.0% {
    transform: scale(1.73) rotate(695.4deg) skew(83.5deg, -19.1deg) translate(-9.6px, -5.3px);
    filter: hue-rotate(87.3deg) blur(7.1px) saturate(123%);
    opacity: 0.7;
    background: magenta;
    text-shadow: 9px 26px 25px lime, -12px 18px 13px red, 27px 11px 39px lime, 1px 20px 10px #ff0080, 12px 21px 31px purple, 11px -16px 11px blue, -22px -22px 29px orange, -13px 0px 29px pink, 24px 19px 30px orange, 16px -20px 13px orange;
  }

  31.1% {
    transform: scale(1.61) rotate(-310.1deg) skew(33.4deg, -8.8deg) translate(-37.2px, -1.1px);
    filter: hue-rotate(259.9deg) blur(8.7px) saturate(132%);
    opacity: 0.98;
    background: #ff0080;
    text-shadow: -12px 21px 45px purple, -7px 14px 18px magenta, 13px -4px 14px #ff0080, 9px 17px 30px blue, 6px 6px 10px magenta, 9px 0px 44px #ff0080, -7px -22px 24px #ff0080, 16px 28px 7px lime, 18px -1px 20px pink, -14px 15px 44px cyan;
  }

  31.2% {
    transform: scale(0.8) rotate(-318.7deg) skew(-68.0deg, -11.4deg) translate(-62.3px, 70.7px);
    filter: hue-rotate(113.2deg) blur(7.9px) saturate(290%);
    opacity: 0.95;
    background: pink;
    text-shadow: 25px -13px 37px blue, 26px 0px 19px pink, -14px -4px 8px #ff0080, -13px -17px 21px pink, -23px 0px 30px cyan, -11px 0px 38px #ff0080, -26px 8px 47px purple, 16px 8px 13px cyan, -15px 24px 10px #ff0080, -4px 4px 11px #ff0080;
  }

  31.3% {
    transform: scale(0.93) rotate(-533.3deg) skew(86.2deg, 24.2deg) translate(22.7px, -39.2px);
    filter: hue-rotate(92.9deg) blur(0.5px) saturate(178%);
    opacity: 0.73;
    background: blue;
    text-shadow: -11px -17px 35px purple, 29px -16px 14px #ff0080, -3px -14px 38px lime, -7px 21px 43px lime, -22px -11px 50px pink, 24px 26px 11px blue, -10px -2px 7px lime, -9px 28px 9px orange, 10px 27px 49px purple, -29px -18px 50px cyan;
  }

  31.4% {
    transform: scale(1.36) rotate(-310.8deg) skew(73.0deg, -84.0deg) translate(-13.7px, -14.6px);
    filter: hue-rotate(101.1deg) blur(2.4px) saturate(183%);
    opacity: 0.74;
    background: #ff0080;
    text-shadow: -2px -23px 37px #ff0080, 4px -17px 32px lime, -24px 13px 36px red, -24px -28px 44px yellow, 2px -7px 29px lime, -21px -27px 12px purple, -29px -9px 16px purple, 5px -10px 24px yellow, -27px -17px 5px lime, 3px -29px 11px #ff0080;
  }

  31.5% {
    transform: scale(1.8) rotate(581.2deg) skew(-17.5deg, 18.6deg) translate(95.6px, -77.9px);
    filter: hue-rotate(198.9deg) blur(8.4px) saturate(221%);
    opacity: 0.71;
    background: cyan;
    text-shadow: 6px 22px 9px lime, 10px -26px 17px magenta, -15px 27px 42px blue, -4px 15px 10px lime, -21px -28px 15px blue, 19px -2px 15px cyan, -22px -2px 40px cyan, 12px 18px 43px orange, 18px -14px 16px #ff0080, 8px 19px 38px purple;
  }

  31.6% {
    transform: scale(0.75) rotate(-459.3deg) skew(-89.9deg, -7.2deg) translate(96.8px, 55.3px);
    filter: hue-rotate(216.4deg) blur(6.2px) saturate(271%);
    opacity: 0.6;
    background: blue;
    text-shadow: -17px 26px 34px cyan, -9px 26px 18px purple, 10px 27px 37px yellow, 9px -30px 44px orange, -26px 16px 50px #ff0080, 22px 3px 10px red, 3px -4px 36px yellow, -25px 22px 27px pink, -28px -25px 30px yellow, -16px 25px 34px red;
  }

  31.7% {
    transform: scale(0.79) rotate(448.3deg) skew(-18.2deg, -23.4deg) translate(-59.4px, 38.1px);
    filter: hue-rotate(295.0deg) blur(0.7px) saturate(202%);
    opacity: 0.86;
    background: pink;
    text-shadow: -1px 28px 34px blue, 12px 26px 17px purple, 4px -4px 15px red, -23px -12px 46px purple, 21px -12px 31px magenta, 29px 13px 24px yellow, 2px -4px 19px orange, 26px -7px 32px yellow, 12px 3px 17px pink, -22px 10px 40px orange;
  }

  31.8% {
    transform: scale(1.3) rotate(587.8deg) skew(-88.1deg, -43.7deg) translate(30.1px, 83.2px);
    filter: hue-rotate(209.4deg) blur(7.3px) saturate(246%);
    opacity: 0.9;
    background: #ff0080;
    text-shadow: 27px -6px 18px lime, 1px 22px 8px orange, -13px -12px 6px cyan, 4px -7px 19px red, -20px -28px 30px pink, 0px 0px 48px pink, 2px 14px 7px pink, -12px -28px 11px pink, 24px 25px 25px pink, -30px -27px 5px orange;
  }

  31.9% {
    transform: scale(1.61) rotate(162.8deg) skew(-85.2deg, -76.8deg) translate(-11.1px, -41.1px);
    filter: hue-rotate(244.2deg) blur(1.0px) saturate(93%);
    opacity: 0.91;
    background: cyan;
    text-shadow: -6px 3px 19px #ff0080, 16px 8px 38px pink, 16px -16px 22px blue, -29px 25px 31px magenta, -2px 7px 21px magenta, 5px -21px 44px yellow, 3px -8px 25px cyan, 28px -27px 44px lime, 11px 20px 24px orange, 20px -4px 29px magenta;
  }

  32.0% {
    transform: scale(1.68) rotate(-410.2deg) skew(20.7deg, 35.3deg) translate(39.3px, -24.3px);
    filter: hue-rotate(260.6deg) blur(1.8px) saturate(198%);
    opacity: 0.96;
    background: yellow;
    text-shadow: -22px -11px 39px red, -8px 3px 27px yellow, 2px -3px 29px pink, -28px -15px 23px purple, -19px 6px 13px orange, -7px -22px 10px purple, 6px -21px 39px red, 18px -3px 24px orange, -7px -3px 21px red, 29px 8px 45px cyan;
  }

  32.1% {
    transform: scale(1.58) rotate(-192.1deg) skew(-5.9deg, -11.2deg) translate(49.9px, -40.7px);
    filter: hue-rotate(145.7deg) blur(2.4px) saturate(211%);
    opacity: 0.74;
    background: red;
    text-shadow: -30px -25px 16px pink, 16px -24px 7px purple, 15px 6px 37px #ff0080, 0px -17px 39px red, 19px -12px 5px magenta, -11px 17px 49px purple, 24px 3px 8px orange, -18px 8px 37px purple, -23px 6px 23px orange, 18px -19px 8px blue;
  }

  32.2% {
    transform: scale(0.94) rotate(474.4deg) skew(53.2deg, -80.4deg) translate(50.5px, -36.8px);
    filter: hue-rotate(333.1deg) blur(9.7px) saturate(269%);
    opacity: 0.67;
    background: blue;
    text-shadow: 20px 28px 47px lime, -3px -5px 50px yellow, -27px -29px 20px red, -29px 17px 35px yellow, -10px -12px 23px orange, -28px 5px 23px blue, -13px 10px 32px #ff0080, 6px 16px 14px magenta, 23px -20px 33px blue, -3px 14px 50px lime;
  }

  32.3% {
    transform: scale(1.3) rotate(578.6deg) skew(-70.8deg, 22.3deg) translate(28.9px, -18.2px);
    filter: hue-rotate(316.3deg) blur(2.8px) saturate(67%);
    opacity: 0.47;
    background: cyan;
    text-shadow: -24px -9px 15px yellow, 15px -14px 18px red, 22px -1px 22px purple, -22px -15px 7px magenta, -29px -7px 32px pink, 2px 23px 19px cyan, 12px -6px 37px #ff0080, -10px -29px 29px pink, -10px 30px 15px red, -20px 22px 32px red;
  }

  32.4% {
    transform: scale(0.63) rotate(476.2deg) skew(43.5deg, -62.1deg) translate(13.9px, 44.4px);
    filter: hue-rotate(217.6deg) blur(4.7px) saturate(85%);
    opacity: 0.85;
    background: cyan;
    text-shadow: -3px 19px 26px magenta, 18px -2px 41px orange, -14px -11px 50px lime, 4px 26px 39px cyan, 19px -24px 6px cyan, -2px -22px 43px cyan, 2px -10px 21px yellow, -3px -9px 37px orange, -16px -7px 23px orange, -29px -29px 42px #ff0080;
  }

  32.5% {
    transform: scale(1.0) rotate(676.1deg) skew(10.1deg, 34.2deg) translate(-49.5px, 70.1px);
    filter: hue-rotate(180.8deg) blur(7.3px) saturate(284%);
    opacity: 0.91;
    background: red;
    text-shadow: 1px 16px 30px purple, 1px -3px 30px magenta, -23px -25px 31px blue, 30px -4px 33px #ff0080, 17px -27px 47px blue, -13px 14px 36px yellow, -5px -9px 17px pink, -16px 23px 29px red, 17px 29px 22px cyan, -5px 0px 33px blue;
  }

  32.6% {
    transform: scale(0.76) rotate(-391.9deg) skew(-48.8deg, 40.1deg) translate(20.5px, 9.4px);
    filter: hue-rotate(164.2deg) blur(9.2px) saturate(134%);
    opacity: 0.74;
    background: cyan;
    text-shadow: -27px 13px 42px cyan, 20px 24px 42px lime, -3px 23px 13px #ff0080, 16px 2px 32px lime, -14px 0px 45px magenta, -13px -18px 42px orange, 19px -30px 16px red, 27px 6px 36px purple, 23px -27px 24px yellow, -11px 12px 20px red;
  }

  32.7% {
    transform: scale(0.73) rotate(-112.6deg) skew(53.7deg, 84.2deg) translate(-82.4px, 10.5px);
    filter: hue-rotate(33.4deg) blur(1.1px) saturate(193%);
    opacity: 0.85;
    background: magenta;
    text-shadow: -18px 2px 12px #ff0080, 14px -13px 37px magenta, -14px -8px 25px pink, -6px 13px 43px blue, -18px -22px 40px pink, 24px -29px 40px cyan, -12px -10px 48px blue, 28px -10px 39px magenta, -1px 24px 7px magenta, 24px 9px 35px blue;
  }

  32.8% {
    transform: scale(0.52) rotate(533.7deg) skew(-68.3deg, 44.8deg) translate(-5.7px, 36.7px);
    filter: hue-rotate(89.3deg) blur(2.9px) saturate(167%);
    opacity: 0.74;
    background: blue;
    text-shadow: -7px -16px 43px pink, 19px 30px 37px lime, -15px -22px 10px pink, 2px -11px 11px blue, 18px 23px 18px lime, 30px -14px 35px pink, -14px 16px 50px #ff0080, -30px -10px 29px blue, -4px 13px 38px magenta, -20px -23px 6px cyan;
  }

  32.9% {
    transform: scale(1.55) rotate(230.0deg) skew(11.2deg, 84.6deg) translate(38.4px, 6.3px);
    filter: hue-rotate(156.0deg) blur(0.0px) saturate(267%);
    opacity: 0.65;
    background: cyan;
    text-shadow: -24px 9px 8px orange, -12px -13px 48px orange, 16px 11px 8px yellow, 12px -3px 47px purple, -1px 26px 45px orange, -17px 8px 20px orange, 6px 29px 49px magenta, -11px 11px 12px cyan, 5px 21px 27px orange, 9px -30px 10px blue;
  }

  33.0% {
    transform: scale(1.6) rotate(-632.7deg) skew(44.8deg, -78.4deg) translate(91.1px, 4.5px);
    filter: hue-rotate(258.4deg) blur(7.3px) saturate(103%);
    opacity: 0.32;
    background: orange;
    text-shadow: -6px 2px 27px cyan, 6px -13px 45px orange, -7px 8px 19px lime, 23px -27px 38px cyan, 0px -5px 37px magenta, -10px -13px 48px orange, -24px -10px 31px magenta, 14px -14px 34px yellow, -6px 23px 9px lime, -15px -18px 5px lime;
  }

  33.1% {
    transform: scale(1.95) rotate(127.6deg) skew(-40.7deg, -8.9deg) translate(7.8px, 6.0px);
    filter: hue-rotate(221.7deg) blur(2.1px) saturate(278%);
    opacity: 0.8;
    background: cyan;
    text-shadow: -7px 15px 21px orange, 15px -24px 38px magenta, -26px 20px 27px purple, -17px 17px 8px pink, -21px -5px 26px #ff0080, 0px -26px 20px magenta, -28px -1px 29px red, -3px -12px 27px magenta, 14px 9px 39px pink, -13px -17px 22px #ff0080;
  }

  33.2% {
    transform: scale(1.36) rotate(-203.3deg) skew(-69.8deg, -23.0deg) translate(40.8px, 66.0px);
    filter: hue-rotate(100.8deg) blur(5.1px) saturate(293%);
    opacity: 0.47;
    background: orange;
    text-shadow: -17px -4px 19px #ff0080, 17px -17px 17px orange, 8px 25px 14px pink, 3px -22px 10px lime, -29px -21px 49px magenta, -29px 2px 49px lime, 26px 0px 14px purple, 0px -2px 45px lime, -25px 16px 23px purple, -15px -19px 11px cyan;
  }

  33.3% {
    transform: scale(1.98) rotate(-335.5deg) skew(-83.1deg, -40.4deg) translate(-73.9px, 1.9px);
    filter: hue-rotate(80.9deg) blur(8.9px) saturate(220%);
    opacity: 0.99;
    background: red;
    text-shadow: -14px 18px 30px magenta, 17px -8px 50px purple, 22px -13px 24px purple, -8px 6px 29px orange, 3px -3px 48px orange, -19px 3px 28px red, -10px -18px 29px magenta, 2px 22px 45px blue, 16px -5px 31px blue, -3px -18px 22px orange;
  }

  33.4% {
    transform: scale(1.64) rotate(-20.5deg) skew(76.2deg, -16.5deg) translate(15.9px, 84.3px);
    filter: hue-rotate(143.2deg) blur(7.6px) saturate(153%);
    opacity: 0.8;
    background: #ff0080;
    text-shadow: 2px 8px 28px #ff0080, -26px -5px 5px red, -30px 7px 26px #ff0080, -6px -19px 17px magenta, -6px 22px 10px #ff0080, -20px 3px 6px orange, -18px 29px 30px #ff0080, 25px -3px 8px purple, 13px 23px 28px pink, 30px -5px 9px purple;
  }

  33.5% {
    transform: scale(1.66) rotate(644.9deg) skew(78.5deg, 77.3deg) translate(15.4px, 71.9px);
    filter: hue-rotate(14.6deg) blur(6.1px) saturate(170%);
    opacity: 0.52;
    background: magenta;
    text-shadow: 18px -2px 24px yellow, 24px 9px 22px blue, 12px -9px 15px magenta, 13px 19px 46px cyan, 12px 19px 42px orange, 6px 13px 48px cyan, 1px -30px 42px cyan, 11px 2px 15px orange, 30px 5px 42px purple, -5px -16px 15px magenta;
  }

  33.6% {
    transform: scale(0.62) rotate(112.6deg) skew(83.0deg, -56.9deg) translate(34.6px, 21.9px);
    filter: hue-rotate(34.4deg) blur(8.9px) saturate(79%);
    opacity: 0.69;
    background: cyan;
    text-shadow: -17px 21px 13px purple, 25px -21px 31px blue, 7px 2px 26px lime, -28px -25px 13px magenta, -27px 27px 12px blue, -29px -20px 32px yellow, 22px 8px 10px pink, 6px 14px 25px pink, 12px 15px 18px #ff0080, -26px 9px 48px #ff0080;
  }

  33.7% {
    transform: scale(0.95) rotate(-225.3deg) skew(-27.8deg, -67.0deg) translate(61.5px, 8.2px);
    filter: hue-rotate(134.3deg) blur(5.1px) saturate(116%);
    opacity: 0.91;
    background: red;
    text-shadow: -28px -24px 46px lime, -9px 25px 27px pink, 29px 18px 7px magenta, 14px 4px 21px yellow, 15px -13px 40px blue, -21px -18px 13px red, -7px -24px 9px pink, 13px -20px 31px cyan, -13px -19px 36px cyan, -24px 12px 39px red;
  }

  33.8% {
    transform: scale(0.67) rotate(-292.1deg) skew(-48.6deg, 3.5deg) translate(99.4px, -42.0px);
    filter: hue-rotate(302.3deg) blur(1.9px) saturate(50%);
    opacity: 0.55;
    background: #ff0080;
    text-shadow: 7px -25px 46px blue, 21px 19px 24px orange, -8px 19px 7px pink, -10px -6px 6px blue, 29px 25px 44px cyan, 28px 10px 36px red, -7px -16px 49px pink, 0px 12px 13px red, 12px -30px 16px orange, 8px 6px 29px yellow;
  }

  33.9% {
    transform: scale(1.98) rotate(-13.8deg) skew(19.8deg, -58.4deg) translate(38.1px, -81.0px);
    filter: hue-rotate(4.8deg) blur(8.5px) saturate(78%);
    opacity: 0.48;
    background: blue;
    text-shadow: -18px -26px 33px purple, -11px -9px 5px purple, -10px -10px 9px pink, 13px 15px 15px yellow, 21px -16px 47px yellow, -17px 28px 44px lime, -11px -24px 46px blue, -24px -20px 30px red, 30px -30px 33px orange, -9px 14px 34px #ff0080;
  }

  34.0% {
    transform: scale(0.94) rotate(682.4deg) skew(-82.8deg, -86.3deg) translate(7.2px, -42.3px);
    filter: hue-rotate(130.7deg) blur(9.4px) saturate(217%);
    opacity: 0.32;
    background: yellow;
    text-shadow: 14px -24px 42px purple, 28px -25px 21px red, 4px 12px 40px cyan, 27px 0px 28px pink, -7px -24px 22px #ff0080, 8px -3px 41px yellow, 4px -5px 10px magenta, 20px 23px 48px red, -18px -29px 12px #ff0080, 14px -24px 48px #ff0080;
  }

  34.1% {
    transform: scale(1.94) rotate(647.3deg) skew(-36.0deg, -83.7deg) translate(10.1px, -34.6px);
    filter: hue-rotate(223.9deg) blur(2.0px) saturate(144%);
    opacity: 0.53;
    background: red;
    text-shadow: -12px 1px 48px cyan, 0px -5px 34px yellow, -7px -26px 19px orange, -1px 17px 26px blue, 15px 19px 19px yellow, 22px -10px 36px yellow, -28px 16px 37px purple, 6px 12px 13px blue, 8px 22px 46px purple, -11px 13px 16px purple;
  }

  34.2% {
    transform: scale(1.1) rotate(-393.6deg) skew(67.3deg, 12.0deg) translate(41.9px, -54.0px);
    filter: hue-rotate(86.5deg) blur(7.0px) saturate(166%);
    opacity: 0.67;
    background: red;
    text-shadow: -24px -10px 12px cyan, 21px -28px 26px orange, 16px -29px 29px red, 17px -10px 23px magenta, 25px 18px 50px #ff0080, 24px -2px 44px #ff0080, 24px 26px 36px red, 17px 19px 23px pink, 17px 28px 19px purple, 22px 11px 40px cyan;
  }

  34.3% {
    transform: scale(1.19) rotate(209.3deg) skew(-8.5deg, 7.3deg) translate(33.2px, -59.7px);
    filter: hue-rotate(24.5deg) blur(2.2px) saturate(294%);
    opacity: 0.5;
    background: pink;
    text-shadow: -24px -8px 35px purple, 7px -1px 40px pink, -8px 29px 49px red, 7px 28px 46px pink, 29px 15px 31px cyan, -5px -11px 13px lime, -27px 16px 34px lime, 5px -6px 15px purple, 25px 0px 10px purple, -1px 24px 34px cyan;
  }

  34.4% {
    transform: scale(1.42) rotate(98.5deg) skew(14.4deg, -20.6deg) translate(-18.7px, -25.9px);
    filter: hue-rotate(120.6deg) blur(1.6px) saturate(54%);
    opacity: 0.95;
    background: pink;
    text-shadow: -29px 5px 33px cyan, -21px 26px 12px pink, -27px 22px 50px pink, 5px 26px 26px blue, -24px 28px 23px #ff0080, -2px 7px 15px blue, 12px 13px 11px purple, -7px 21px 32px magenta, -20px -9px 45px purple, -13px 30px 45px orange;
  }

  34.5% {
    transform: scale(1.24) rotate(143.2deg) skew(-55.9deg, -24.5deg) translate(37.7px, -36.1px);
    filter: hue-rotate(72.5deg) blur(2.5px) saturate(281%);
    opacity: 0.83;
    background: pink;
    text-shadow: -1px -1px 11px blue, -19px 25px 20px yellow, 14px 5px 23px red, 21px 28px 5px orange, -1px -7px 26px magenta, -15px 11px 5px yellow, 22px 1px 46px purple, -26px 8px 48px lime, -29px 0px 38px #ff0080, -25px -11px 11px yellow;
  }

  34.6% {
    transform: scale(0.51) rotate(678.3deg) skew(10.4deg, 76.3deg) translate(21.4px, -35.6px);
    filter: hue-rotate(179.2deg) blur(7.0px) saturate(209%);
    opacity: 0.92;
    background: red;
    text-shadow: 12px -2px 23px blue, 7px -12px 15px cyan, -26px 17px 49px pink, -19px 14px 12px lime, -29px -13px 36px red, 8px -8px 8px pink, 19px -28px 16px purple, 22px -27px 31px pink, 14px -16px 46px orange, -27px 17px 28px purple;
  }

  34.7% {
    transform: scale(1.7) rotate(-397.2deg) skew(28.9deg, -5.1deg) translate(21.6px, 4.3px);
    filter: hue-rotate(357.3deg) blur(6.5px) saturate(93%);
    opacity: 0.77;
    background: cyan;
    text-shadow: -4px -8px 30px purple, 22px 3px 11px orange, 7px 20px 48px magenta, -5px -20px 12px cyan, 0px -19px 48px pink, -16px -25px 45px magenta, -26px -17px 39px magenta, -22px 15px 33px red, -25px 7px 41px yellow, 3px -4px 6px pink;
  }

  34.8% {
    transform: scale(0.89) rotate(715.8deg) skew(53.6deg, 12.2deg) translate(-71.2px, 51.8px);
    filter: hue-rotate(225.1deg) blur(9.3px) saturate(66%);
    opacity: 0.72;
    background: cyan;
    text-shadow: 30px -16px 30px cyan, 6px -2px 29px yellow, -25px 16px 47px yellow, -4px -24px 23px purple, 24px -28px 38px magenta, 5px -17px 25px red, 30px 22px 24px orange, -27px -9px 19px purple, -25px -2px 8px yellow, -26px 3px 15px magenta;
  }

  34.9% {
    transform: scale(0.85) rotate(504.0deg) skew(11.9deg, 47.3deg) translate(-60.4px, -53.8px);
    filter: hue-rotate(40.1deg) blur(2.5px) saturate(202%);
    opacity: 0.91;
    background: lime;
    text-shadow: -13px -29px 48px pink, -10px -26px 45px red, -19px 6px 23px magenta, 22px 18px 26px purple, -30px 30px 40px magenta, 16px -16px 13px cyan, -25px -17px 34px pink, -1px 23px 45px magenta, 12px 20px 48px #ff0080, 20px -28px 35px orange;
  }

  35.0% {
    transform: scale(1.03) rotate(-687.2deg) skew(-29.6deg, -60.6deg) translate(28.4px, 83.7px);
    filter: hue-rotate(249.3deg) blur(1.0px) saturate(102%);
    opacity: 0.9;
    background: cyan;
    text-shadow: 15px 22px 50px orange, -2px 30px 43px lime, -10px -21px 16px cyan, -7px -15px 32px lime, 17px -24px 11px cyan, -17px -3px 37px #ff0080, 8px 27px 29px blue, -16px -8px 6px cyan, 18px -22px 23px #ff0080, -13px -21px 14px lime;
  }

  35.1% {
    transform: scale(1.14) rotate(-454.1deg) skew(-3.2deg, 11.2deg) translate(20.5px, 25.4px);
    filter: hue-rotate(74.3deg) blur(9.3px) saturate(73%);
    opacity: 0.98;
    background: #ff0080;
    text-shadow: 10px -26px 25px lime, -1px -24px 49px orange, -28px -13px 42px blue, -13px 4px 16px blue, -27px -18px 14px blue, 24px -30px 21px red, -12px -30px 21px yellow, 5px 3px 32px magenta, -26px 13px 41px orange, -3px 30px 9px lime;
  }

  35.2% {
    transform: scale(1.39) rotate(636.7deg) skew(72.1deg, -46.9deg) translate(53.0px, -96.9px);
    filter: hue-rotate(333.4deg) blur(8.3px) saturate(174%);
    opacity: 0.36;
    background: cyan;
    text-shadow: 15px -18px 13px yellow, 27px -5px 20px red, 2px -7px 44px pink, -22px 22px 12px magenta, 29px 6px 7px purple, 1px 9px 40px cyan, 11px -19px 45px orange, -7px -14px 19px cyan, 10px -7px 48px pink, -10px -27px 34px lime;
  }

  35.3% {
    transform: scale(1.69) rotate(-527.5deg) skew(4.1deg, 2.1deg) translate(68.5px, 23.2px);
    filter: hue-rotate(38.2deg) blur(1.6px) saturate(129%);
    opacity: 0.33;
    background: red;
    text-shadow: 19px -11px 38px lime, -11px 7px 42px purple, 10px 20px 18px cyan, -2px -2px 20px magenta, 7px -22px 13px cyan, 20px 8px 10px orange, 2px 13px 8px orange, 30px -8px 19px cyan, 4px 8px 29px orange, 29px -9px 15px magenta;
  }

  35.4% {
    transform: scale(1.31) rotate(438.6deg) skew(2.9deg, -56.4deg) translate(-43.1px, -56.0px);
    filter: hue-rotate(137.9deg) blur(0.2px) saturate(77%);
    opacity: 0.84;
    background: magenta;
    text-shadow: 19px -21px 7px magenta, -10px -10px 40px orange, -5px -24px 47px cyan, -20px 17px 9px cyan, -4px -15px 20px magenta, 10px -24px 31px #ff0080, -23px 27px 19px lime, 23px -11px 14px pink, 23px 9px 46px cyan, 21px -27px 9px yellow;
  }

  35.5% {
    transform: scale(0.76) rotate(-281.1deg) skew(41.8deg, -66.2deg) translate(-51.4px, -65.7px);
    filter: hue-rotate(350.3deg) blur(1.5px) saturate(221%);
    opacity: 0.66;
    background: magenta;
    text-shadow: 2px 24px 32px #ff0080, 23px 6px 50px cyan, -28px 24px 18px pink, -27px 30px 29px red, -12px -25px 31px #ff0080, 16px -30px 17px blue, 3px -28px 44px cyan, -22px -7px 35px purple, 17px 12px 18px red, -8px -28px 20px pink;
  }

  35.6% {
    transform: scale(1.92) rotate(-642.2deg) skew(-40.1deg, -87.4deg) translate(-4.2px, -59.1px);
    filter: hue-rotate(59.6deg) blur(3.6px) saturate(66%);
    opacity: 0.8;
    background: orange;
    text-shadow: 11px -8px 9px purple, -1px -27px 38px yellow, -17px 23px 19px yellow, -16px 0px 33px cyan, -9px -15px 42px red, -14px 19px 34px lime, -6px 6px 20px lime, -11px -10px 41px yellow, -21px 21px 40px pink, -2px -1px 12px #ff0080;
  }

  35.7% {
    transform: scale(1.08) rotate(-43.1deg) skew(-60.6deg, -62.1deg) translate(-21.2px, 79.4px);
    filter: hue-rotate(147.7deg) blur(8.9px) saturate(195%);
    opacity: 0.43;
    background: yellow;
    text-shadow: 13px 12px 37px pink, 4px -1px 7px blue, -29px 11px 21px blue, -26px 15px 18px #ff0080, -12px -30px 42px pink, 22px 18px 7px cyan, -14px 6px 10px red, -13px -15px 29px pink, -16px 23px 37px pink, -8px 28px 43px red;
  }

  35.8% {
    transform: scale(1.56) rotate(-321.0deg) skew(-8.0deg, -39.6deg) translate(51.4px, 83.4px);
    filter: hue-rotate(331.0deg) blur(2.6px) saturate(272%);
    opacity: 0.89;
    background: orange;
    text-shadow: 27px 2px 42px pink, 30px 19px 21px cyan, 29px -14px 27px #ff0080, 17px -15px 13px lime, -28px -9px 23px cyan, 21px -5px 39px purple, 1px 20px 45px yellow, -4px -13px 35px purple, -1px -5px 27px red, -6px 29px 24px lime;
  }

  35.9% {
    transform: scale(1.81) rotate(633.8deg) skew(10.3deg, 26.0deg) translate(-46.7px, 22.2px);
    filter: hue-rotate(95.6deg) blur(6.8px) saturate(254%);
    opacity: 0.94;
    background: pink;
    text-shadow: -13px 23px 35px yellow, -28px 11px 26px purple, 3px -11px 29px purple, 5px 3px 20px orange, 22px 18px 6px lime, 29px -29px 27px lime, 12px 29px 16px yellow, 10px 12px 9px yellow, -11px -30px 36px pink, -18px -5px 18px lime;
  }

  36.0% {
    transform: scale(0.71) rotate(3.5deg) skew(-54.8deg, -11.5deg) translate(-11.3px, -42.8px);
    filter: hue-rotate(24.9deg) blur(6.5px) saturate(129%);
    opacity: 0.83;
    background: #ff0080;
    text-shadow: 3px 22px 40px #ff0080, 26px 23px 14px magenta, -15px 0px 42px yellow, -25px 28px 22px orange, 8px -18px 11px #ff0080, 25px -19px 34px red, 19px -8px 22px blue, -7px 28px 21px red, 13px 6px 46px orange, -21px 6px 48px red;
  }

  36.1% {
    transform: scale(1.84) rotate(688.3deg) skew(72.6deg, 11.8deg) translate(28.8px, 0.4px);
    filter: hue-rotate(278.9deg) blur(7.4px) saturate(217%);
    opacity: 0.84;
    background: magenta;
    text-shadow: 18px 16px 33px blue, 12px 17px 40px red, -1px -13px 5px blue, 14px 24px 26px purple, -24px -22px 19px lime, -3px -24px 50px yellow, 21px 6px 10px red, 4px -17px 35px pink, -1px 21px 29px purple, 13px 25px 42px yellow;
  }

  36.2% {
    transform: scale(0.73) rotate(-550.0deg) skew(-41.4deg, 31.7deg) translate(-9.4px, -31.5px);
    filter: hue-rotate(9.6deg) blur(9.9px) saturate(268%);
    opacity: 0.84;
    background: orange;
    text-shadow: 24px -3px 17px orange, -6px -4px 48px lime, -12px -23px 9px lime, 28px 11px 11px orange, 4px 28px 38px lime, 14px 22px 32px blue, -22px 19px 20px magenta, 6px 21px 18px purple, -30px -7px 24px orange, -19px 13px 47px lime;
  }

  36.3% {
    transform: scale(1.46) rotate(-655.7deg) skew(84.3deg, 82.8deg) translate(39.8px, 22.4px);
    filter: hue-rotate(336.4deg) blur(5.2px) saturate(196%);
    opacity: 0.82;
    background: magenta;
    text-shadow: -6px -18px 35px yellow, -26px 6px 35px pink, 4px 9px 23px orange, 17px 24px 15px cyan, 27px 30px 24px pink, -18px -22px 22px pink, 12px -21px 20px purple, 11px -1px 43px purple, -30px 10px 41px orange, 22px 0px 38px blue;
  }

  36.4% {
    transform: scale(0.53) rotate(187.0deg) skew(-78.4deg, 0.4deg) translate(-8.4px, -97.0px);
    filter: hue-rotate(349.7deg) blur(3.2px) saturate(145%);
    opacity: 0.38;
    background: pink;
    text-shadow: 12px -2px 44px lime, -6px -26px 16px orange, -21px -24px 44px lime, -27px 26px 13px pink, -28px -26px 45px orange, 15px 8px 42px lime, 8px 17px 14px purple, -4px 14px 15px blue, -2px 13px 14px pink, -7px 1px 25px cyan;
  }

  36.5% {
    transform: scale(0.76) rotate(-211.8deg) skew(36.4deg, -88.6deg) translate(-31.2px, 45.3px);
    filter: hue-rotate(265.6deg) blur(4.9px) saturate(300%);
    opacity: 0.62;
    background: yellow;
    text-shadow: 1px -25px 24px lime, 15px 18px 21px cyan, -8px -21px 9px pink, -13px -24px 28px red, 26px -4px 46px cyan, 7px 30px 41px purple, 3px 17px 21px orange, 11px -4px 29px #ff0080, 5px 28px 45px pink, -27px 7px 7px purple;
  }

  36.6% {
    transform: scale(1.56) rotate(614.7deg) skew(-45.9deg, 16.3deg) translate(89.7px, 47.1px);
    filter: hue-rotate(319.1deg) blur(6.8px) saturate(283%);
    opacity: 0.72;
    background: pink;
    text-shadow: 8px -3px 21px purple, -4px 17px 30px blue, 24px 23px 45px yellow, 18px 10px 8px yellow, -17px -17px 39px red, 1px -28px 48px purple, 21px -14px 48px yellow, 9px -30px 50px #ff0080, -23px 21px 24px lime, 19px -1px 48px pink;
  }

  36.7% {
    transform: scale(1.8) rotate(-5.8deg) skew(89.7deg, 63.2deg) translate(-44.2px, -4.0px);
    filter: hue-rotate(233.1deg) blur(6.1px) saturate(170%);
    opacity: 1.0;
    background: yellow;
    text-shadow: 16px -24px 30px blue, 16px -2px 17px magenta, 1px -18px 42px red, -8px -29px 48px magenta, -15px -15px 28px blue, -19px -12px 37px #ff0080, -13px 29px 41px cyan, 2px -11px 22px magenta, -15px -25px 14px pink, -27px 10px 20px yellow;
  }

  36.8% {
    transform: scale(1.38) rotate(-241.8deg) skew(64.5deg, 78.4deg) translate(-7.3px, -40.0px);
    filter: hue-rotate(236.5deg) blur(9.0px) saturate(241%);
    opacity: 0.53;
    background: yellow;
    text-shadow: 6px -25px 44px blue, 2px 29px 38px pink, 20px 10px 42px blue, 3px 28px 36px magenta, 26px -11px 14px cyan, -24px -9px 44px lime, -30px -25px 33px blue, -27px -15px 12px orange, -30px 1px 27px cyan, 19px -20px 7px red;
  }

  36.9% {
    transform: scale(0.94) rotate(695.6deg) skew(63.0deg, 88.1deg) translate(93.2px, -33.6px);
    filter: hue-rotate(347.4deg) blur(5.8px) saturate(253%);
    opacity: 0.82;
    background: lime;
    text-shadow: 12px 14px 18px pink, 30px 29px 46px purple, -26px -9px 32px cyan, -10px -27px 9px yellow, 30px -12px 25px orange, 29px 6px 8px red, -26px -8px 35px cyan, -13px 29px 34px #ff0080, 3px -29px 32px #ff0080, -23px -17px 10px red;
  }

  37.0% {
    transform: scale(0.87) rotate(563.3deg) skew(-88.5deg, -17.3deg) translate(51.6px, 91.7px);
    filter: hue-rotate(48.9deg) blur(7.1px) saturate(66%);
    opacity: 0.84;
    background: #ff0080;
    text-shadow: -15px -25px 43px red, 21px 23px 22px blue, -29px -10px 9px lime, 5px -18px 34px blue, 23px 24px 34px red, 0px 17px 45px yellow, 28px -17px 31px purple, 4px -21px 15px magenta, -1px -18px 33px cyan, 1px -26px 25px orange;
  }

  37.1% {
    transform: scale(1.82) rotate(-268.1deg) skew(-38.8deg, 71.4deg) translate(-80.0px, -2.4px);
    filter: hue-rotate(83.7deg) blur(5.9px) saturate(98%);
    opacity: 0.91;
    background: cyan;
    text-shadow: 2px -4px 37px orange, 25px 29px 7px magenta, -30px 21px 42px cyan, -10px 19px 22px purple, 25px -27px 44px orange, -15px 7px 14px #ff0080, 11px -21px 26px yellow, -2px 24px 22px #ff0080, 16px 25px 35px yellow, 25px -8px 21px magenta;
  }

  37.2% {
    transform: scale(0.65) rotate(-514.0deg) skew(-80.6deg, 23.6deg) translate(-44.4px, -13.6px);
    filter: hue-rotate(23.1deg) blur(8.3px) saturate(99%);
    opacity: 0.39;
    background: blue;
    text-shadow: 11px 13px 6px purple, 0px 28px 24px #ff0080, -2px 27px 22px yellow, -6px 29px 32px cyan, -22px -20px 8px lime, -10px -29px 22px yellow, 1px 19px 38px blue, -18px 22px 24px #ff0080, -11px 4px 24px #ff0080, 14px -7px 22px pink;
  }

  37.3% {
    transform: scale(1.72) rotate(499.9deg) skew(-64.6deg, -65.4deg) translate(52.1px, -41.8px);
    filter: hue-rotate(245.3deg) blur(1.0px) saturate(297%);
    opacity: 0.57;
    background: yellow;
    text-shadow: -14px 28px 18px blue, 20px -30px 49px lime, 8px 17px 44px pink, 17px -14px 35px pink, -12px 8px 37px red, 11px 24px 24px purple, 28px 28px 15px purple, 7px -29px 37px orange, 0px -26px 15px yellow, 0px 28px 24px red;
  }

  37.4% {
    transform: scale(1.1) rotate(15.6deg) skew(27.4deg, 17.0deg) translate(-57.1px, -50.0px);
    filter: hue-rotate(99.4deg) blur(7.1px) saturate(152%);
    opacity: 0.87;
    background: yellow;
    text-shadow: -28px -15px 48px cyan, -6px -14px 43px blue, -11px -1px 11px lime, -14px 28px 11px yellow, -22px 4px 10px purple, 24px 10px 38px blue, 20px 18px 46px magenta, -1px -26px 50px pink, -4px -26px 42px purple, 13px -12px 9px yellow;
  }

  37.5% {
    transform: scale(1.13) rotate(-216.4deg) skew(-61.3deg, 30.6deg) translate(69.9px, 57.3px);
    filter: hue-rotate(106.2deg) blur(1.2px) saturate(186%);
    opacity: 0.95;
    background: pink;
    text-shadow: -13px -24px 48px #ff0080, -11px 9px 5px purple, -24px 28px 29px blue, 17px 2px 14px #ff0080, 5px 16px 21px red, 16px 1px 13px cyan, 22px 14px 15px magenta, 11px -14px 12px yellow, 2px 0px 48px magenta, -26px 17px 6px #ff0080;
  }

  37.6% {
    transform: scale(1.79) rotate(-693.3deg) skew(55.3deg, 68.4deg) translate(-35.8px, 50.7px);
    filter: hue-rotate(158.5deg) blur(3.4px) saturate(182%);
    opacity: 0.68;
    background: purple;
    text-shadow: 23px 14px 27px yellow, 16px -9px 43px red, -23px -18px 36px blue, 14px -27px 14px blue, -1px -30px 45px cyan, 19px 30px 39px purple, -7px -8px 34px #ff0080, 6px -16px 9px yellow, -9px 18px 19px orange, 1px 28px 24px magenta;
  }

  37.7% {
    transform: scale(0.73) rotate(531.3deg) skew(59.1deg, 88.6deg) translate(-95.2px, -35.9px);
    filter: hue-rotate(48.4deg) blur(1.0px) saturate(89%);
    opacity: 0.3;
    background: lime;
    text-shadow: 29px 12px 10px yellow, -16px 17px 49px red, 0px 17px 17px #ff0080, 1px -28px 5px cyan, -3px 10px 5px pink, 14px -30px 35px blue, 28px 3px 35px purple, -1px 28px 42px blue, 22px -20px 34px purple, -10px -13px 19px magenta;
  }

  37.8% {
    transform: scale(1.06) rotate(84.2deg) skew(56.0deg, 22.6deg) translate(-41.2px, -77.7px);
    filter: hue-rotate(8.2deg) blur(6.7px) saturate(251%);
    opacity: 0.86;
    background: pink;
    text-shadow: -4px 23px 18px red, 14px -19px 39px pink, -27px -11px 8px #ff0080, -30px -9px 32px blue, 16px -11px 25px purple, -23px -12px 34px red, -22px 15px 33px yellow, 21px 6px 14px pink, -25px 23px 29px purple, -13px -13px 43px orange;
  }

  37.9% {
    transform: scale(1.52) rotate(-664.5deg) skew(26.6deg, -72.2deg) translate(-9.1px, 63.2px);
    filter: hue-rotate(242.5deg) blur(5.8px) saturate(230%);
    opacity: 0.66;
    background: yellow;
    text-shadow: -27px -9px 30px yellow, -25px -12px 39px pink, -7px -29px 49px blue, -19px -12px 13px pink, 28px 14px 25px red, -11px 5px 16px cyan, 11px -8px 47px magenta, 0px -8px 5px cyan, 17px -19px 22px #ff0080, 9px -13px 16px lime;
  }

  38.0% {
    transform: scale(1.88) rotate(655.9deg) skew(9.2deg, 30.2deg) translate(43.0px, -26.1px);
    filter: hue-rotate(120.4deg) blur(5.8px) saturate(80%);
    opacity: 0.95;
    background: #ff0080;
    text-shadow: -27px 28px 45px magenta, -19px -19px 28px blue, 4px -28px 23px #ff0080, 1px 19px 28px purple, -7px -25px 25px pink, 6px -15px 23px orange, -27px 0px 19px pink, -20px -12px 49px #ff0080, 25px -15px 26px pink, -4px 20px 39px yellow;
  }

  38.1% {
    transform: scale(0.63) rotate(307.5deg) skew(-75.0deg, 36.6deg) translate(-81.6px, 4.1px);
    filter: hue-rotate(74.5deg) blur(8.8px) saturate(260%);
    opacity: 0.57;
    background: cyan;
    text-shadow: 22px 29px 9px magenta, -17px -29px 12px cyan, -10px -2px 10px cyan, 6px 29px 41px red, 7px -17px 5px blue, -7px -19px 30px yellow, -3px -2px 43px yellow, 24px -16px 25px purple, -27px 22px 33px cyan, 6px 28px 41px #ff0080;
  }

  38.2% {
    transform: scale(1.94) rotate(-571.2deg) skew(-85.1deg, -24.9deg) translate(-57.6px, 32.6px);
    filter: hue-rotate(274.3deg) blur(8.9px) saturate(227%);
    opacity: 0.97;
    background: purple;
    text-shadow: 11px 20px 15px purple, 11px -18px 35px lime, 19px -23px 18px yellow, 2px -30px 23px #ff0080, 9px 29px 38px lime, 10px 30px 44px lime, -28px 25px 44px red, 10px 17px 35px yellow, -12px 17px 41px yellow, -16px -19px 42px magenta;
  }

  38.3% {
    transform: scale(1.45) rotate(-198.7deg) skew(77.0deg, 63.9deg) translate(-10.3px, -3.7px);
    filter: hue-rotate(201.2deg) blur(4.8px) saturate(226%);
    opacity: 0.32;
    background: yellow;
    text-shadow: 13px -16px 30px magenta, -24px -2px 24px #ff0080, -4px 11px 22px cyan, 2px 24px 17px blue, -22px 26px 36px lime, -16px -4px 21px purple, 12px 5px 38px yellow, 6px -30px 11px magenta, -2px 0px 27px cyan, -8px -3px 6px pink;
  }

  38.4% {
    transform: scale(1.25) rotate(405.2deg) skew(10.5deg, 10.0deg) translate(30.7px, -82.7px);
    filter: hue-rotate(177.4deg) blur(1.7px) saturate(143%);
    opacity: 0.7;
    background: magenta;
    text-shadow: 7px -4px 27px magenta, -29px 7px 29px lime, 22px 15px 31px #ff0080, -15px -3px 16px pink, 7px 22px 25px yellow, -18px 1px 37px red, 3px 16px 47px purple, -23px -5px 47px blue, -16px 14px 16px orange, -17px -30px 6px #ff0080;
  }

  38.5% {
    transform: scale(0.61) rotate(-75.1deg) skew(-89.6deg, 20.8deg) translate(41.7px, -85.0px);
    filter: hue-rotate(187.0deg) blur(7.6px) saturate(284%);
    opacity: 0.48;
    background: red;
    text-shadow: -21px 0px 37px red, 3px 0px 21px lime, -5px 7px 41px red, -11px -29px 13px red, -28px 7px 26px lime, -8px -30px 30px orange, -10px -21px 6px cyan, 8px 14px 33px purple, -13px 20px 8px orange, 15px -2px 29px lime;
  }

  38.6% {
    transform: scale(1.27) rotate(567.7deg) skew(6.2deg, 73.5deg) translate(-89.6px, -32.4px);
    filter: hue-rotate(61.4deg) blur(7.6px) saturate(86%);
    opacity: 0.85;
    background: purple;
    text-shadow: -8px -7px 17px orange, -16px -22px 9px cyan, 18px 5px 30px yellow, 5px -20px 12px magenta, 15px 18px 47px cyan, 24px 3px 25px #ff0080, 16px 5px 13px blue, -24px 12px 40px cyan, 26px -11px 45px pink, -5px -13px 18px lime;
  }

  38.7% {
    transform: scale(1.33) rotate(-630.7deg) skew(-82.5deg, -28.2deg) translate(-18.8px, -64.8px);
    filter: hue-rotate(33.5deg) blur(1.9px) saturate(62%);
    opacity: 0.71;
    background: blue;
    text-shadow: -16px 4px 26px #ff0080, -21px -8px 38px purple, 19px 14px 43px lime, -17px 12px 43px cyan, 25px 28px 26px yellow, 9px -17px 33px magenta, -13px -28px 8px red, -22px 16px 41px cyan, -15px -19px 29px cyan, 3px -13px 41px magenta;
  }

  38.8% {
    transform: scale(1.12) rotate(91.2deg) skew(6.5deg, 31.6deg) translate(55.6px, -11.3px);
    filter: hue-rotate(239.0deg) blur(3.7px) saturate(285%);
    opacity: 0.9;
    background: cyan;
    text-shadow: 8px 18px 23px orange, 19px 10px 35px cyan, -20px -24px 20px red, -23px 2px 20px lime, 30px 22px 25px cyan, -29px -10px 36px pink, -25px 14px 45px blue, -22px 21px 10px magenta, -30px -14px 27px red, 3px 19px 25px cyan;
  }

  38.9% {
    transform: scale(1.03) rotate(245.6deg) skew(69.0deg, -34.6deg) translate(-41.4px, 94.9px);
    filter: hue-rotate(218.3deg) blur(7.7px) saturate(277%);
    opacity: 0.33;
    background: cyan;
    text-shadow: 14px -18px 29px orange, 14px -24px 26px magenta, -27px 15px 39px lime, 18px 12px 42px magenta, 22px -25px 44px yellow, -10px -20px 10px blue, 30px -17px 26px magenta, 13px 29px 7px #ff0080, -27px -29px 26px orange, -3px 15px 28px blue;
  }

  39.0% {
    transform: scale(1.7) rotate(698.4deg) skew(-89.3deg, -42.7deg) translate(-38.0px, -26.1px);
    filter: hue-rotate(44.6deg) blur(8.8px) saturate(167%);
    opacity: 0.71;
    background: pink;
    text-shadow: 6px -1px 17px #ff0080, 16px 17px 16px yellow, -20px -27px 14px purple, -28px -7px 27px #ff0080, -11px -19px 47px blue, 9px -23px 43px cyan, 7px 5px 45px #ff0080, -25px 19px 41px blue, 15px -6px 37px yellow, 25px -4px 13px #ff0080;
  }

  39.1% {
    transform: scale(0.97) rotate(373.1deg) skew(-28.8deg, 6.2deg) translate(-69.5px, -27.3px);
    filter: hue-rotate(49.2deg) blur(1.9px) saturate(253%);
    opacity: 0.6;
    background: yellow;
    text-shadow: 11px -10px 9px cyan, -29px 18px 19px blue, 19px -14px 23px orange, -29px 17px 15px red, 16px -28px 8px lime, -19px -5px 8px purple, -12px 22px 19px yellow, 18px 3px 29px yellow, 3px 28px 19px pink, -22px -9px 10px red;
  }

  39.2% {
    transform: scale(1.67) rotate(545.8deg) skew(-73.5deg, 2.4deg) translate(-69.9px, -78.7px);
    filter: hue-rotate(40.3deg) blur(1.4px) saturate(131%);
    opacity: 0.75;
    background: yellow;
    text-shadow: 16px -26px 15px red, 9px 2px 37px lime, -1px -28px 35px magenta, -15px 3px 24px blue, -28px 29px 48px orange, -20px -19px 33px pink, 7px -25px 23px blue, 20px 6px 41px lime, -20px -9px 17px cyan, -11px -14px 22px lime;
  }

  39.3% {
    transform: scale(1.53) rotate(-295.1deg) skew(63.8deg, -52.0deg) translate(91.9px, -45.0px);
    filter: hue-rotate(93.9deg) blur(8.8px) saturate(94%);
    opacity: 0.95;
    background: red;
    text-shadow: 21px 5px 29px magenta, 8px 16px 36px magenta, 29px -11px 49px cyan, 1px -26px 18px purple, -27px -23px 20px lime, -26px -23px 21px purple, 25px 6px 46px purple, 4px -15px 50px yellow, -15px -3px 23px magenta, 7px 5px 10px pink;
  }

  39.4% {
    transform: scale(1.29) rotate(672.0deg) skew(73.9deg, -62.6deg) translate(-19.0px, -28.4px);
    filter: hue-rotate(233.2deg) blur(5.7px) saturate(79%);
    opacity: 0.75;
    background: yellow;
    text-shadow: 1px 3px 21px purple, 24px -28px 49px lime, -4px -20px 27px blue, 25px 17px 40px orange, 20px -11px 14px orange, -6px 7px 27px magenta, -16px 2px 14px yellow, -9px -15px 45px lime, 12px -4px 48px yellow, 27px -20px 39px #ff0080;
  }

  39.5% {
    transform: scale(1.55) rotate(648.0deg) skew(-71.6deg, -74.8deg) translate(8.8px, 40.8px);
    filter: hue-rotate(315.0deg) blur(3.7px) saturate(198%);
    opacity: 0.6;
    background: orange;
    text-shadow: 12px -4px 7px blue, -30px 27px 20px blue, -2px -15px 17px lime, -27px 24px 32px orange, 14px 4px 33px orange, 13px -10px 15px purple, 22px 6px 16px magenta, -2px -12px 35px pink, 28px -7px 49px yellow, -13px 12px 29px pink;
  }

  39.6% {
    transform: scale(1.05) rotate(-490.0deg) skew(46.7deg, 63.7deg) translate(-44.4px, 89.1px);
    filter: hue-rotate(64.3deg) blur(3.2px) saturate(113%);
    opacity: 0.74;
    background: pink;
    text-shadow: 18px 29px 40px blue, -24px 15px 30px pink, -6px 17px 46px pink, -10px 10px 13px yellow, -14px -24px 35px pink, -9px -6px 38px #ff0080, -23px 27px 48px blue, -29px -16px 50px lime, 28px -9px 16px yellow, 1px 10px 25px purple;
  }

  39.7% {
    transform: scale(1.07) rotate(-31.8deg) skew(-38.9deg, -68.9deg) translate(70.5px, -99.6px);
    filter: hue-rotate(296.5deg) blur(5.6px) saturate(104%);
    opacity: 0.41;
    background: purple;
    text-shadow: -30px -8px 16px #ff0080, 15px 25px 40px pink, 22px 28px 21px #ff0080, -29px 11px 43px purple, 14px 19px 9px blue, 0px -12px 14px lime, -23px -27px 10px pink, 17px 25px 33px cyan, 19px -4px 26px orange, 17px 29px 44px red;
  }

  39.8% {
    transform: scale(1.77) rotate(183.1deg) skew(-66.3deg, 76.2deg) translate(-12.8px, -15.6px);
    filter: hue-rotate(143.4deg) blur(6.6px) saturate(57%);
    opacity: 0.37;
    background: cyan;
    text-shadow: -26px 5px 49px lime, -24px -7px 31px #ff0080, 13px 2px 49px magenta, 30px 28px 34px blue, -5px 25px 40px lime, 28px -11px 34px purple, 19px -28px 10px magenta, -23px -5px 31px red, -28px 27px 18px orange, -27px 20px 18px cyan;
  }

  39.9% {
    transform: scale(1.36) rotate(-328.8deg) skew(-58.2deg, 65.6deg) translate(36.6px, -63.8px);
    filter: hue-rotate(56.7deg) blur(5.0px) saturate(181%);
    opacity: 0.96;
    background: yellow;
    text-shadow: 4px -4px 36px cyan, 11px 2px 14px purple, -1px 12px 16px lime, -26px 2px 40px #ff0080, 27px 28px 47px magenta, 8px -11px 30px lime, 3px 29px 25px red, 11px -11px 9px pink, -21px 12px 33px blue, 18px 20px 38px blue;
  }

  40.0% {
    transform: scale(1.7) rotate(-150.0deg) skew(11.6deg, 43.2deg) translate(-42.5px, 16.5px);
    filter: hue-rotate(313.0deg) blur(5.9px) saturate(215%);
    opacity: 0.49;
    background: #ff0080;
    text-shadow: 28px 8px 7px pink, -6px -14px 12px pink, 7px 17px 43px orange, 2px -20px 39px red, -19px 9px 36px orange, 9px -22px 42px purple, -24px 2px 21px blue, -7px 1px 44px cyan, 15px -15px 11px orange, -9px -24px 33px #ff0080;
  }

  40.1% {
    transform: scale(1.57) rotate(-572.2deg) skew(-32.5deg, -22.3deg) translate(36.1px, 38.7px);
    filter: hue-rotate(56.6deg) blur(7.2px) saturate(114%);
    opacity: 0.54;
    background: lime;
    text-shadow: 15px 16px 12px blue, 29px 23px 10px blue, 9px -12px 24px orange, -29px 24px 46px blue, 22px -1px 18px orange, -19px 18px 6px yellow, 28px 7px 43px red, 26px -2px 35px pink, 23px 19px 21px pink, -30px -12px 8px blue;
  }

  40.2% {
    transform: scale(0.63) rotate(462.8deg) skew(71.5deg, 13.7deg) translate(-43.8px, 2.8px);
    filter: hue-rotate(71.1deg) blur(1.2px) saturate(143%);
    opacity: 0.97;
    background: pink;
    text-shadow: -30px -21px 10px pink, 7px 1px 10px cyan, -21px -22px 41px blue, 24px 14px 20px blue, 27px -16px 37px orange, -21px 4px 43px pink, -12px 19px 8px lime, -11px -18px 37px purple, -27px -25px 24px pink, 1px -20px 11px #ff0080;
  }

  40.3% {
    transform: scale(1.9) rotate(-318.8deg) skew(53.7deg, -37.4deg) translate(-6.3px, 19.5px);
    filter: hue-rotate(140.1deg) blur(5.1px) saturate(129%);
    opacity: 0.93;
    background: magenta;
    text-shadow: 13px 21px 37px #ff0080, -13px 12px 19px pink, -28px 3px 50px blue, 5px -21px 38px pink, -27px -4px 15px magenta, 20px 19px 8px red, -26px -5px 12px pink, 3px 16px 39px magenta, 29px -20px 5px pink, -8px 1px 15px yellow;
  }

  40.4% {
    transform: scale(1.72) rotate(561.8deg) skew(15.2deg, 4.0deg) translate(39.5px, 40.4px);
    filter: hue-rotate(338.8deg) blur(0.3px) saturate(242%);
    opacity: 0.56;
    background: red;
    text-shadow: 3px -5px 25px blue, -23px -30px 16px pink, 22px 19px 15px cyan, 23px -7px 12px lime, -23px -29px 9px magenta, -5px 16px 14px purple, 28px 23px 21px magenta, 15px -18px 26px red, 16px -25px 42px purple, -18px -25px 41px cyan;
  }

  40.5% {
    transform: scale(0.73) rotate(-144.0deg) skew(34.7deg, 29.4deg) translate(-50.8px, 77.6px);
    filter: hue-rotate(2.7deg) blur(4.0px) saturate(115%);
    opacity: 0.82;
    background: magenta;
    text-shadow: -15px 9px 44px cyan, -21px -22px 22px yellow, -19px -17px 43px purple, -18px 4px 27px yellow, 12px -12px 40px blue, -29px -10px 12px orange, 8px 11px 28px red, 12px -21px 23px orange, -23px 27px 20px pink, 20px -4px 48px purple;
  }

  40.6% {
    transform: scale(1.23) rotate(-428.3deg) skew(-27.3deg, 82.6deg) translate(-12.9px, 22.9px);
    filter: hue-rotate(15.8deg) blur(9.5px) saturate(189%);
    opacity: 0.45;
    background: cyan;
    text-shadow: -23px 3px 49px red, -5px -9px 31px pink, 20px 18px 50px magenta, -26px 30px 44px orange, 9px 26px 8px orange, -9px -14px 18px red, -2px -4px 26px #ff0080, 29px 30px 41px purple, -19px -26px 19px magenta, 25px -2px 41px blue;
  }

  40.7% {
    transform: scale(0.6) rotate(334.6deg) skew(87.2deg, -43.3deg) translate(-8.6px, 14.6px);
    filter: hue-rotate(213.9deg) blur(0.4px) saturate(60%);
    opacity: 0.81;
    background: cyan;
    text-shadow: 22px 18px 37px red, 6px -8px 10px cyan, 3px -25px 28px yellow, 17px -29px 20px magenta, 16px 8px 41px #ff0080, -28px -18px 9px magenta, 18px -28px 26px blue, 12px 6px 42px magenta, -7px -11px 22px blue, -16px 10px 32px red;
  }

  40.8% {
    transform: scale(1.38) rotate(-507.8deg) skew(-61.2deg, 48.4deg) translate(4.5px, -43.7px);
    filter: hue-rotate(207.8deg) blur(8.2px) saturate(106%);
    opacity: 0.71;
    background: cyan;
    text-shadow: -1px 25px 38px yellow, 20px 27px 45px #ff0080, 11px -29px 50px blue, -14px -28px 17px red, -29px 8px 43px lime, 29px 26px 18px lime, 7px 26px 33px lime, -6px -2px 43px cyan, 30px -3px 47px red, 27px -26px 35px blue;
  }

  40.9% {
    transform: scale(1.12) rotate(-479.9deg) skew(-50.5deg, -66.1deg) translate(-28.6px, -89.3px);
    filter: hue-rotate(291.8deg) blur(2.7px) saturate(157%);
    opacity: 0.42;
    background: red;
    text-shadow: 26px -22px 30px pink, 29px 27px 37px yellow, -30px 10px 9px purple, 27px 19px 27px blue, -9px 20px 45px lime, 13px -18px 27px lime, -7px -11px 43px lime, -18px 14px 5px pink, -14px 21px 37px orange, -2px -27px 10px yellow;
  }

  41.0% {
    transform: scale(1.27) rotate(-481.8deg) skew(51.7deg, 21.8deg) translate(-11.2px, 29.8px);
    filter: hue-rotate(262.7deg) blur(5.1px) saturate(207%);
    opacity: 0.46;
    background: yellow;
    text-shadow: -24px 24px 21px pink, -20px -11px 6px orange, -9px -18px 28px blue, 27px -19px 36px blue, 7px -27px 6px orange, -18px 20px 44px orange, -30px -27px 50px orange, -5px 16px 33px #ff0080, -2px -12px 12px yellow, -20px 16px 23px yellow;
  }

  41.1% {
    transform: scale(1.46) rotate(-188.2deg) skew(63.4deg, -76.7deg) translate(-81.5px, -51.7px);
    filter: hue-rotate(223.2deg) blur(9.9px) saturate(235%);
    opacity: 0.86;
    background: purple;
    text-shadow: 15px 1px 10px lime, -7px 22px 28px orange, -27px 18px 29px lime, -27px 18px 13px orange, -14px -21px 34px pink, -3px 2px 27px pink, 0px -29px 47px magenta, 1px 19px 8px yellow, 18px -1px 31px #ff0080, -13px 9px 32px blue;
  }

  41.2% {
    transform: scale(1.14) rotate(-639.2deg) skew(-44.1deg, 57.7deg) translate(-31.1px, -11.3px);
    filter: hue-rotate(146.0deg) blur(0.4px) saturate(129%);
    opacity: 0.93;
    background: cyan;
    text-shadow: 5px -17px 40px red, 23px -17px 22px cyan, -19px 25px 42px orange, -17px -18px 43px orange, -27px -26px 26px #ff0080, 21px 25px 8px blue, -5px 7px 11px pink, -15px 30px 45px #ff0080, 20px 21px 49px cyan, 11px -26px 36px magenta;
  }

  41.3% {
    transform: scale(1.46) rotate(712.2deg) skew(63.0deg, -60.8deg) translate(85.8px, 71.2px);
    filter: hue-rotate(210.2deg) blur(8.5px) saturate(269%);
    opacity: 0.82;
    background: red;
    text-shadow: 14px 15px 26px blue, -29px -25px 37px pink, 16px -19px 19px pink, 11px -6px 41px purple, 30px -22px 8px lime, 21px 22px 6px orange, -16px 26px 34px purple, -13px -21px 48px lime, 22px 9px 17px cyan, -21px -4px 44px #ff0080;
  }

  41.4% {
    transform: scale(1.94) rotate(118.2deg) skew(51.7deg, 55.6deg) translate(77.8px, -67.5px);
    filter: hue-rotate(287.1deg) blur(8.9px) saturate(270%);
    opacity: 0.72;
    background: magenta;
    text-shadow: 22px -25px 47px yellow, -20px 3px 10px #ff0080, 7px 20px 34px orange, 26px 24px 49px cyan, 20px 25px 25px red, -17px -27px 9px red, -20px -3px 30px cyan, 14px 22px 30px lime, -11px -2px 45px yellow, 27px -24px 28px cyan;
  }

  41.5% {
    transform: scale(1.35) rotate(686.6deg) skew(-67.6deg, -45.2deg) translate(54.4px, 95.0px);
    filter: hue-rotate(105.8deg) blur(6.7px) saturate(247%);
    opacity: 0.92;
    background: blue;
    text-shadow: -5px 18px 25px orange, 24px 26px 27px red, -2px 28px 16px lime, -21px -4px 12px lime, 6px 11px 19px magenta, -17px 4px 22px red, -6px -6px 29px yellow, -25px 6px 38px blue, -4px -22px 10px red, -15px -8px 41px pink;
  }

  41.6% {
    transform: scale(0.83) rotate(485.7deg) skew(1.1deg, -38.2deg) translate(58.9px, 45.0px);
    filter: hue-rotate(327.9deg) blur(1.1px) saturate(272%);
    opacity: 0.37;
    background: yellow;
    text-shadow: 13px -23px 40px blue, 13px 6px 39px blue, 1px 25px 13px cyan, 13px 14px 14px orange, -13px -3px 17px cyan, 14px 0px 19px blue, -3px -18px 24px purple, 16px 18px 37px orange, -9px 5px 48px pink, -10px 23px 33px blue;
  }

  41.7% {
    transform: scale(0.77) rotate(164.6deg) skew(-15.8deg, -30.0deg) translate(-8.5px, -53.7px);
    filter: hue-rotate(148.6deg) blur(6.9px) saturate(157%);
    opacity: 0.31;
    background: blue;
    text-shadow: 11px -29px 15px red, 18px -28px 25px #ff0080, 3px 3px 26px pink, -19px 6px 44px orange, 30px 19px 5px purple, 30px 5px 12px yellow, -27px 11px 14px pink, 1px -27px 48px lime, 3px 6px 27px purple, -14px 27px 6px yellow;
  }

  41.8% {
    transform: scale(0.86) rotate(-620.3deg) skew(-55.1deg, 47.8deg) translate(-62.1px, 27.4px);
    filter: hue-rotate(20.7deg) blur(6.5px) saturate(169%);
    opacity: 0.88;
    background: #ff0080;
    text-shadow: -24px 12px 19px magenta, 11px 12px 32px lime, -25px 12px 20px yellow, 3px 11px 17px blue, 12px 17px 27px lime, -6px -23px 22px yellow, 4px -23px 25px yellow, -30px -25px 30px red, -11px -17px 37px purple, -20px 12px 41px #ff0080;
  }

  41.9% {
    transform: scale(1.12) rotate(105.7deg) skew(47.2deg, 40.0deg) translate(-2.1px, -70.5px);
    filter: hue-rotate(185.4deg) blur(7.3px) saturate(217%);
    opacity: 0.98;
    background: blue;
    text-shadow: -6px -11px 49px purple, 19px -6px 13px orange, 20px 2px 17px orange, -26px -10px 38px orange, -25px -18px 49px purple, 12px -15px 37px magenta, 21px -18px 16px lime, -29px -10px 38px magenta, 15px 15px 39px yellow, 0px -29px 13px cyan;
  }

  42.0% {
    transform: scale(1.63) rotate(439.5deg) skew(-21.4deg, 31.6deg) translate(72.9px, 70.7px);
    filter: hue-rotate(90.8deg) blur(0.5px) saturate(259%);
    opacity: 0.96;
    background: blue;
    text-shadow: 13px 4px 8px lime, 17px -29px 26px blue, -18px -1px 13px yellow, 2px -29px 50px orange, 9px 8px 26px pink, -24px 5px 23px orange, -25px -23px 36px red, 19px -28px 11px yellow, -27px 6px 23px pink, 27px -13px 38px lime;
  }

  42.1% {
    transform: scale(1.82) rotate(571.5deg) skew(-22.9deg, 36.1deg) translate(-48.0px, -79.1px);
    filter: hue-rotate(304.7deg) blur(0.6px) saturate(84%);
    opacity: 0.63;
    background: lime;
    text-shadow: 9px 22px 33px yellow, 0px 22px 5px red, -20px -30px 8px yellow, 20px 15px 36px blue, 15px -23px 42px magenta, -30px -16px 6px yellow, 8px 21px 31px red, -10px -15px 16px blue, -6px 8px 45px #ff0080, 2px -7px 10px red;
  }

  42.2% {
    transform: scale(0.8) rotate(471.6deg) skew(-71.8deg, 46.6deg) translate(-24.5px, -30.6px);
    filter: hue-rotate(134.2deg) blur(6.0px) saturate(107%);
    opacity: 0.68;
    background: red;
    text-shadow: 2px -16px 31px blue, 20px -23px 46px magenta, -23px 15px 9px pink, 2px 27px 37px pink, 8px -3px 7px purple, 22px 6px 49px red, 12px 19px 40px purple, 28px -26px 43px cyan, 17px 1px 31px blue, -27px -10px 25px yellow;
  }

  42.3% {
    transform: scale(1.8) rotate(708.1deg) skew(-57.7deg, 69.2deg) translate(66.4px, -62.6px);
    filter: hue-rotate(165.2deg) blur(8.4px) saturate(268%);
    opacity: 0.78;
    background: yellow;
    text-shadow: 20px 16px 42px red, 3px -29px 47px pink, 23px 3px 43px magenta, -23px -3px 8px magenta, 5px -10px 42px cyan, 28px 22px 21px cyan, 16px -13px 19px cyan, 4px -5px 48px lime, -5px 20px 41px yellow, -20px 21px 48px blue;
  }

  42.4% {
    transform: scale(0.98) rotate(187.8deg) skew(47.1deg, -9.1deg) translate(-16.7px, 47.0px);
    filter: hue-rotate(130.5deg) blur(7.4px) saturate(66%);
    opacity: 0.92;
    background: magenta;
    text-shadow: 3px 15px 39px lime, -5px 8px 15px purple, 22px 3px 20px blue, -25px 18px 40px #ff0080, -23px -30px 17px orange, 28px 19px 14px purple, 19px -13px 15px red, 28px -27px 18px red, 11px 25px 39px red, 8px -21px 44px blue;
  }

  42.5% {
    transform: scale(0.81) rotate(-39.5deg) skew(22.9deg, 35.7deg) translate(-29.9px, -61.1px);
    filter: hue-rotate(306.8deg) blur(5.8px) saturate(84%);
    opacity: 1.0;
    background: yellow;
    text-shadow: 12px -10px 33px blue, 0px -12px 32px magenta, 22px 5px 23px yellow, -13px 5px 42px #ff0080, -11px -19px 33px yellow, -1px -22px 15px orange, -20px -4px 28px purple, 1px 3px 12px cyan, 6px 11px 36px pink, -29px 28px 25px blue;
  }

  42.6% {
    transform: scale(1.91) rotate(333.0deg) skew(70.4deg, -12.1deg) translate(-82.5px, -65.2px);
    filter: hue-rotate(3.3deg) blur(1.0px) saturate(280%);
    opacity: 0.62;
    background: pink;
    text-shadow: 14px -28px 26px red, 27px -26px 49px blue, 27px -25px 13px blue, 3px -26px 33px magenta, -3px 1px 23px cyan, -25px 3px 7px blue, -7px -7px 49px yellow, -23px 22px 22px purple, -10px -21px 26px pink, 17px -2px 21px yellow;
  }

  42.7% {
    transform: scale(1.4) rotate(-518.1deg) skew(81.5deg, 38.6deg) translate(72.7px, -63.2px);
    filter: hue-rotate(213.3deg) blur(2.8px) saturate(142%);
    opacity: 0.4;
    background: magenta;
    text-shadow: -11px 10px 42px magenta, 9px -26px 50px lime, -21px -27px 41px lime, -2px -13px 46px magenta, -28px -7px 31px blue, -5px 8px 46px cyan, 6px 19px 28px #ff0080, 27px -21px 27px orange, 21px 7px 34px #ff0080, 25px -3px 37px lime;
  }

  42.8% {
    transform: scale(0.68) rotate(-549.4deg) skew(23.7deg, 45.9deg) translate(-62.6px, -8.4px);
    filter: hue-rotate(309.1deg) blur(7.0px) saturate(193%);
    opacity: 0.42;
    background: lime;
    text-shadow: -1px 7px 12px yellow, -25px -28px 19px pink, -1px -4px 36px purple, -8px -25px 26px blue, -26px 0px 8px #ff0080, -25px -15px 41px red, 23px 1px 35px lime, -16px 8px 20px magenta, 16px 27px 17px pink, -7px 20px 15px magenta;
  }

  42.9% {
    transform: scale(1.5) rotate(652.1deg) skew(47.5deg, 67.8deg) translate(24.5px, 33.1px);
    filter: hue-rotate(161.0deg) blur(4.4px) saturate(260%);
    opacity: 0.99;
    background: #ff0080;
    text-shadow: 18px -26px 50px magenta, 25px 5px 41px #ff0080, 6px -22px 9px magenta, 11px -7px 15px magenta, 8px -24px 29px pink, -25px -21px 34px yellow, 12px 6px 49px purple, 25px 23px 19px lime, -1px 30px 24px blue, 22px -22px 32px lime;
  }

  43.0% {
    transform: scale(1.72) rotate(148.7deg) skew(49.0deg, 73.8deg) translate(-3.0px, -20.6px);
    filter: hue-rotate(351.6deg) blur(1.2px) saturate(283%);
    opacity: 0.62;
    background: pink;
    text-shadow: 27px 2px 18px lime, 20px 1px 16px yellow, -11px -21px 50px yellow, 0px -23px 30px red, -30px -14px 7px yellow, -2px 21px 50px red, 29px -12px 16px pink, -5px 16px 30px magenta, 6px -21px 26px purple, -28px 21px 42px cyan;
  }

  43.1% {
    transform: scale(0.73) rotate(235.6deg) skew(-52.8deg, -19.1deg) translate(-33.0px, -38.9px);
    filter: hue-rotate(140.7deg) blur(5.8px) saturate(137%);
    opacity: 0.73;
    background: orange;
    text-shadow: -8px 18px 21px magenta, 9px -6px 6px red, -22px -11px 30px orange, 5px 23px 9px blue, -27px -9px 14px purple, -4px 27px 10px #ff0080, 1px -5px 42px #ff0080, 3px -5px 16px #ff0080, 4px -12px 37px cyan, 21px -29px 26px blue;
  }

  43.2% {
    transform: scale(1.81) rotate(-307.5deg) skew(-61.7deg, -49.1deg) translate(-63.7px, 24.1px);
    filter: hue-rotate(69.2deg) blur(8.2px) saturate(54%);
    opacity: 0.38;
    background: #ff0080;
    text-shadow: -14px 25px 11px lime, -2px -10px 19px orange, -12px -7px 44px purple, 16px 23px 15px #ff0080, -22px 22px 17px magenta, -11px 27px 49px blue, 7px 1px 7px blue, 0px -1px 5px lime, 26px -7px 41px red, -11px -28px 24px lime;
  }

  43.3% {
    transform: scale(1.12) rotate(-649.3deg) skew(-68.6deg, 2.6deg) translate(64.7px, 64.7px);
    filter: hue-rotate(287.5deg) blur(5.5px) saturate(145%);
    opacity: 0.44;
    background: red;
    text-shadow: -2px -19px 5px blue, -12px -28px 5px #ff0080, -11px 30px 47px #ff0080, -11px -6px 22px orange, 21px -13px 10px #ff0080, -5px -12px 20px lime, -27px -10px 8px red, -21px 19px 5px red, 10px 0px 49px orange, 30px 30px 15px yellow;
  }

  43.4% {
    transform: scale(1.75) rotate(292.4deg) skew(-76.7deg, -84.5deg) translate(-8.0px, -88.2px);
    filter: hue-rotate(229.4deg) blur(2.0px) saturate(170%);
    opacity: 0.91;
    background: red;
    text-shadow: 10px -21px 46px purple, -15px -5px 26px cyan, 20px -4px 39px blue, 1px 5px 5px purple, -30px 25px 47px magenta, 17px -21px 5px yellow, -23px -12px 27px yellow, -26px -8px 34px lime, 30px -2px 13px purple, -12px -18px 8px lime;
  }

  43.5% {
    transform: scale(1.51) rotate(375.6deg) skew(-80.1deg, 63.4deg) translate(99.9px, 52.2px);
    filter: hue-rotate(206.0deg) blur(0.6px) saturate(118%);
    opacity: 0.97;
    background: cyan;
    text-shadow: 14px 28px 46px lime, 9px 25px 10px blue, 24px 0px 20px red, 18px -3px 30px cyan, 22px -22px 11px lime, -12px -7px 50px #ff0080, 13px 27px 15px blue, -4px 15px 30px #ff0080, -24px -5px 40px lime, 10px 7px 11px purple;
  }

  43.6% {
    transform: scale(1.91) rotate(279.9deg) skew(-8.9deg, 4.0deg) translate(-35.8px, 87.9px);
    filter: hue-rotate(251.5deg) blur(0.7px) saturate(255%);
    opacity: 0.63;
    background: blue;
    text-shadow: -19px -29px 17px pink, 8px 20px 38px orange, 19px -18px 33px pink, 20px 26px 16px blue, 18px -6px 37px yellow, 24px -22px 22px magenta, 22px 30px 20px magenta, 18px -23px 15px lime, 24px -3px 42px magenta, -8px -2px 5px blue;
  }

  43.7% {
    transform: scale(1.51) rotate(-237.5deg) skew(27.6deg, 48.0deg) translate(-60.6px, -25.6px);
    filter: hue-rotate(217.3deg) blur(3.4px) saturate(217%);
    opacity: 0.42;
    background: purple;
    text-shadow: -28px -26px 45px yellow, -23px -23px 47px #ff0080, -2px -1px 15px red, 2px 16px 9px purple, -13px -8px 35px #ff0080, 21px -24px 7px magenta, -6px 13px 5px #ff0080, -24px 23px 27px red, -6px 3px 8px yellow, 4px 26px 26px blue;
  }

  43.8% {
    transform: scale(1.69) rotate(-110.6deg) skew(77.6deg, 42.6deg) translate(68.6px, -38.4px);
    filter: hue-rotate(96.1deg) blur(5.1px) saturate(216%);
    opacity: 0.92;
    background: cyan;
    text-shadow: 20px 5px 16px yellow, 0px 19px 10px magenta, -10px 1px 10px pink, 21px -1px 45px magenta, 23px -10px 16px lime, -28px 12px 22px orange, -6px -7px 32px yellow, -26px 18px 16px cyan, -21px -12px 14px orange, -23px -4px 23px blue;
  }

  43.9% {
    transform: scale(0.52) rotate(-16.0deg) skew(-45.5deg, 41.4deg) translate(52.4px, -60.5px);
    filter: hue-rotate(294.7deg) blur(8.0px) saturate(161%);
    opacity: 0.52;
    background: orange;
    text-shadow: 16px 4px 46px #ff0080, 24px -11px 39px pink, -21px 15px 7px magenta, -1px 27px 24px purple, 27px 17px 47px red, -25px 0px 17px #ff0080, 10px -20px 36px magenta, -26px 7px 7px blue, 21px -1px 36px blue, 28px -7px 38px purple;
  }

  44.0% {
    transform: scale(1.78) rotate(407.1deg) skew(-35.3deg, -76.8deg) translate(-44.4px, 3.4px);
    filter: hue-rotate(319.4deg) blur(0.9px) saturate(66%);
    opacity: 0.49;
    background: purple;
    text-shadow: 11px -20px 35px yellow, -20px 0px 18px #ff0080, 9px -19px 34px red, 25px -19px 46px #ff0080, 16px 9px 39px blue, -25px -3px 14px orange, 25px 2px 40px blue, 4px 14px 43px blue, -7px 27px 11px #ff0080, 15px 27px 13px #ff0080;
  }

  44.1% {
    transform: scale(1.24) rotate(-199.4deg) skew(-58.6deg, 87.9deg) translate(50.0px, 50.2px);
    filter: hue-rotate(159.1deg) blur(8.2px) saturate(88%);
    opacity: 0.81;
    background: lime;
    text-shadow: 24px 10px 10px blue, 15px -1px 23px pink, 0px -21px 18px magenta, -16px 0px 27px cyan, -30px -15px 40px cyan, -23px -15px 6px lime, 23px -5px 15px red, -30px -6px 35px red, 16px 8px 47px blue, 26px -12px 49px lime;
  }

  44.2% {
    transform: scale(1.52) rotate(615.2deg) skew(-54.1deg, -48.8deg) translate(-65.7px, -94.1px);
    filter: hue-rotate(181.4deg) blur(1.6px) saturate(111%);
    opacity: 0.64;
    background: yellow;
    text-shadow: 21px -2px 49px cyan, -16px -10px 29px purple, 25px 4px 50px pink, 24px 8px 17px blue, 12px 12px 8px orange, -19px -11px 11px orange, 12px 16px 6px magenta, 12px -26px 20px orange, -19px -24px 25px red, 8px -27px 27px blue;
  }

  44.3% {
    transform: scale(0.91) rotate(686.3deg) skew(73.6deg, 73.6deg) translate(71.2px, 47.5px);
    filter: hue-rotate(186.1deg) blur(7.1px) saturate(90%);
    opacity: 0.75;
    background: purple;
    text-shadow: -16px 15px 14px red, -16px 27px 23px magenta, -26px 17px 7px orange, 11px 14px 25px purple, -19px -10px 39px purple, -29px -19px 8px yellow, 8px -11px 29px #ff0080, 4px -27px 24px red, 10px -10px 32px purple, -9px 18px 18px cyan;
  }

  44.4% {
    transform: scale(1.47) rotate(714.8deg) skew(-20.4deg, 52.8deg) translate(69.1px, 95.5px);
    filter: hue-rotate(205.2deg) blur(8.5px) saturate(154%);
    opacity: 0.42;
    background: purple;
    text-shadow: -18px -9px 40px red, 21px 21px 49px pink, 0px 2px 49px magenta, 7px 6px 34px pink, -24px 15px 30px pink, 5px 11px 9px orange, 8px 20px 47px magenta, -6px 17px 39px lime, 5px 12px 22px purple, -17px -20px 35px yellow;
  }

  44.5% {
    transform: scale(1.15) rotate(142.6deg) skew(32.6deg, 57.1deg) translate(-86.0px, 14.8px);
    filter: hue-rotate(62.9deg) blur(1.3px) saturate(245%);
    opacity: 0.32;
    background: #ff0080;
    text-shadow: 6px 1px 31px blue, 15px -19px 35px #ff0080, 25px 26px 8px blue, 26px -12px 13px blue, 1px -19px 18px magenta, 3px -24px 27px yellow, -6px 0px 10px #ff0080, 6px -3px 7px purple, -15px -18px 31px lime, -8px 27px 31px magenta;
  }

  44.6% {
    transform: scale(1.83) rotate(-303.3deg) skew(88.8deg, -73.6deg) translate(47.3px, 7.1px);
    filter: hue-rotate(56.8deg) blur(7.1px) saturate(179%);
    opacity: 0.97;
    background: orange;
    text-shadow: -18px 21px 23px lime, 11px 20px 46px yellow, -6px -15px 24px orange, -20px 22px 13px cyan, -2px -7px 15px blue, -13px -28px 34px pink, 23px 17px 43px cyan, -7px 22px 12px lime, -2px 25px 23px lime, -7px -7px 8px magenta;
  }

  44.7% {
    transform: scale(1.36) rotate(400.4deg) skew(24.1deg, -47.0deg) translate(18.8px, -66.9px);
    filter: hue-rotate(208.0deg) blur(3.2px) saturate(60%);
    opacity: 0.7;
    background: magenta;
    text-shadow: 15px 26px 45px magenta, 27px 19px 45px lime, -28px 27px 49px yellow, -25px 21px 25px cyan, -29px -29px 6px purple, -25px 25px 16px blue, 17px 5px 49px lime, -23px 5px 28px pink, -14px -29px 40px pink, 16px 17px 25px purple;
  }

  44.8% {
    transform: scale(1.28) rotate(74.2deg) skew(-16.1deg, -10.2deg) translate(-47.7px, -52.6px);
    filter: hue-rotate(105.9deg) blur(6.9px) saturate(162%);
    opacity: 0.61;
    background: pink;
    text-shadow: -28px 9px 25px pink, 8px 26px 47px orange, -16px 8px 28px yellow, -26px -10px 10px pink, 28px 22px 17px lime, -5px 4px 32px red, -20px -3px 6px yellow, -26px 25px 44px red, 26px -11px 34px lime, 15px 16px 17px #ff0080;
  }

  44.9% {
    transform: scale(1.89) rotate(-706.1deg) skew(-29.8deg, 34.3deg) translate(-13.4px, -75.6px);
    filter: hue-rotate(299.2deg) blur(5.9px) saturate(234%);
    opacity: 0.51;
    background: pink;
    text-shadow: 13px -27px 23px lime, -18px 9px 27px magenta, -19px -11px 9px cyan, 18px -12px 43px blue, -28px -27px 21px #ff0080, 14px 8px 16px pink, -12px 7px 39px #ff0080, 3px 18px 31px red, -15px -6px 9px orange, -22px -5px 5px purple;
  }

  45.0% {
    transform: scale(1.57) rotate(591.5deg) skew(73.5deg, -20.9deg) translate(97.2px, -9.2px);
    filter: hue-rotate(27.9deg) blur(9.7px) saturate(177%);
    opacity: 0.45;
    background: magenta;
    text-shadow: -5px 1px 46px #ff0080, 22px -12px 44px cyan, 9px 24px 43px yellow, 23px 4px 49px magenta, 0px 3px 19px purple, 28px -30px 47px purple, 5px -28px 48px blue, -2px 6px 48px #ff0080, -11px 16px 35px yellow, 13px -24px 29px #ff0080;
  }

  45.1% {
    transform: scale(0.69) rotate(202.2deg) skew(-66.4deg, 80.5deg) translate(-94.3px, 6.0px);
    filter: hue-rotate(63.7deg) blur(3.3px) saturate(89%);
    opacity: 0.53;
    background: pink;
    text-shadow: -24px -7px 42px pink, 3px -23px 17px pink, -1px 27px 47px lime, 11px -19px 5px #ff0080, 12px 22px 21px lime, -5px -24px 22px red, 2px -29px 27px lime, 18px -2px 12px yellow, 9px 23px 49px cyan, 5px 20px 38px red;
  }

  45.2% {
    transform: scale(1.21) rotate(0.9deg) skew(75.1deg, -66.7deg) translate(34.8px, -38.2px);
    filter: hue-rotate(252.7deg) blur(5.3px) saturate(244%);
    opacity: 0.58;
    background: cyan;
    text-shadow: -27px -23px 7px pink, -20px 12px 49px orange, 9px -11px 40px magenta, -18px -16px 29px lime, -17px -15px 13px lime, 29px 29px 44px purple, 10px 2px 25px lime, -24px -1px 29px yellow, -5px 14px 42px blue, -28px -9px 35px red;
  }

  45.3% {
    transform: scale(1.65) rotate(-666.6deg) skew(11.3deg, 27.0deg) translate(-35.7px, -94.7px);
    filter: hue-rotate(201.0deg) blur(0.7px) saturate(84%);
    opacity: 0.46;
    background: purple;
    text-shadow: 21px 23px 48px pink, -14px 24px 38px orange, -2px -29px 13px purple, -29px -14px 27px red, 16px -6px 16px purple, 12px -5px 21px blue, 21px 27px 35px pink, -30px 16px 49px red, -12px -12px 39px blue, 26px 4px 23px #ff0080;
  }

  45.4% {
    transform: scale(0.62) rotate(-479.6deg) skew(30.1deg, -1.9deg) translate(-94.8px, -77.9px);
    filter: hue-rotate(345.9deg) blur(8.6px) saturate(161%);
    opacity: 0.44;
    background: magenta;
    text-shadow: -5px 16px 37px pink, -22px -2px 47px #ff0080, 2px 9px 22px magenta, 6px 23px 49px lime, 0px 13px 32px lime, -19px -17px 5px blue, -7px -30px 6px orange, -23px -27px 38px cyan, 6px 27px 38px pink, 1px 19px 40px red;
  }

  45.5% {
    transform: scale(1.92) rotate(476.0deg) skew(-4.8deg, 74.0deg) translate(-95.5px, -20.9px);
    filter: hue-rotate(333.4deg) blur(8.2px) saturate(89%);
    opacity: 0.76;
    background: pink;
    text-shadow: -26px -11px 31px pink, -7px 16px 37px lime, -8px -25px 16px #ff0080, -13px -28px 5px cyan, 9px -11px 18px cyan, 13px 14px 7px pink, -16px -27px 7px lime, 9px 30px 43px pink, 27px 30px 37px orange, 10px 13px 28px lime;
  }

  45.6% {
    transform: scale(1.54) rotate(558.7deg) skew(-22.5deg, -82.7deg) translate(-5.6px, 15.7px);
    filter: hue-rotate(138.2deg) blur(2.9px) saturate(160%);
    opacity: 0.87;
    background: orange;
    text-shadow: 29px 23px 27px magenta, -20px -7px 34px magenta, 2px 14px 11px purple, 13px 29px 33px orange, -17px -13px 27px purple, 4px -5px 30px cyan, 20px 9px 17px magenta, -28px -3px 50px #ff0080, 4px 28px 20px #ff0080, -11px 1px 47px lime;
  }

  45.7% {
    transform: scale(1.34) rotate(236.9deg) skew(65.0deg, 45.2deg) translate(14.1px, -42.5px);
    filter: hue-rotate(320.0deg) blur(3.6px) saturate(69%);
    opacity: 0.81;
    background: #ff0080;
    text-shadow: -24px 17px 29px purple, 25px 2px 12px yellow, -13px 12px 25px purple, 3px -1px 15px cyan, 30px 29px 45px red, 2px -12px 13px lime, -7px 19px 24px #ff0080, -13px -8px 44px orange, -30px 29px 30px cyan, 3px -13px 43px red;
  }

  45.8% {
    transform: scale(0.55) rotate(-99.7deg) skew(-27.2deg, 25.8deg) translate(8.5px, -54.0px);
    filter: hue-rotate(101.7deg) blur(6.9px) saturate(67%);
    opacity: 0.52;
    background: pink;
    text-shadow: -2px 22px 30px #ff0080, 6px -9px 20px magenta, -23px 24px 25px lime, -4px 18px 30px pink, 14px -28px 7px orange, 29px 12px 7px pink, -5px 9px 32px pink, 4px -23px 44px blue, 24px 23px 26px purple, -14px 26px 45px orange;
  }

  45.9% {
    transform: scale(1.2) rotate(-357.8deg) skew(-68.2deg, -44.8deg) translate(32.6px, 32.0px);
    filter: hue-rotate(167.6deg) blur(3.7px) saturate(151%);
    opacity: 0.32;
    background: pink;
    text-shadow: 13px 24px 47px orange, 13px -5px 11px cyan, -7px -28px 28px pink, 10px -5px 41px magenta, 5px -8px 37px pink, -29px -21px 20px pink, -13px -22px 35px purple, 20px -16px 7px blue, 23px 8px 37px red, -28px 30px 35px yellow;
  }

  46.0% {
    transform: scale(1.77) rotate(39.4deg) skew(19.3deg, 86.7deg) translate(12.8px, 77.4px);
    filter: hue-rotate(69.0deg) blur(6.2px) saturate(293%);
    opacity: 0.36;
    background: lime;
    text-shadow: -20px 20px 42px lime, 25px 22px 8px #ff0080, -27px -21px 8px purple, 19px -30px 38px #ff0080, -7px -12px 27px magenta, -23px 19px 26px purple, -24px -28px 23px cyan, 2px -16px 40px blue, 11px -8px 6px #ff0080, -18px 15px 22px pink;
  }

  46.1% {
    transform: scale(0.78) rotate(448.1deg) skew(15.0deg, -47.3deg) translate(-60.3px, 26.4px);
    filter: hue-rotate(59.8deg) blur(1.7px) saturate(84%);
    opacity: 0.65;
    background: purple;
    text-shadow: 25px -22px 21px red, 20px -6px 27px blue, 26px 29px 49px red, 19px -7px 33px cyan, -18px 21px 8px orange, 18px 18px 8px red, -3px 1px 20px lime, 0px -25px 39px yellow, -2px -25px 45px lime, -9px 3px 17px yellow;
  }

  46.2% {
    transform: scale(0.63) rotate(-472.7deg) skew(-66.7deg, -37.3deg) translate(-61.2px, -52.6px);
    filter: hue-rotate(127.6deg) blur(6.2px) saturate(133%);
    opacity: 0.91;
    background: yellow;
    text-shadow: 24px -5px 46px yellow, -16px 6px 43px cyan, -23px 17px 17px pink, 2px 11px 41px #ff0080, -20px 10px 49px pink, -5px 17px 44px blue, -4px 2px 7px red, -11px -28px 36px yellow, -14px -14px 22px red, -1px 20px 11px blue;
  }

  46.3% {
    transform: scale(1.9) rotate(509.2deg) skew(28.5deg, -3.2deg) translate(1.0px, -55.8px);
    filter: hue-rotate(27.1deg) blur(8.2px) saturate(198%);
    opacity: 0.45;
    background: pink;
    text-shadow: 18px 4px 21px cyan, 28px 2px 7px blue, -5px 8px 46px red, 19px -8px 45px red, -2px -10px 49px pink, 21px -7px 17px orange, 17px 20px 43px blue, 14px -2px 29px orange, 7px -25px 22px pink, -25px -3px 16px yellow;
  }

  46.4% {
    transform: scale(0.64) rotate(274.6deg) skew(-64.7deg, -29.4deg) translate(-98.9px, 53.2px);
    filter: hue-rotate(96.1deg) blur(1.6px) saturate(154%);
    opacity: 0.99;
    background: cyan;
    text-shadow: 17px 6px 26px pink, -12px -2px 20px pink, -9px -19px 24px #ff0080, 22px 4px 46px orange, 19px -2px 37px magenta, 6px 9px 30px red, 26px -1px 15px yellow, -15px 9px 49px magenta, 22px 15px 13px orange, -28px 11px 35px pink;
  }

  46.5% {
    transform: scale(1.9) rotate(-48.4deg) skew(34.5deg, 63.7deg) translate(79.7px, 94.9px);
    filter: hue-rotate(165.4deg) blur(8.8px) saturate(231%);
    opacity: 0.64;
    background: pink;
    text-shadow: 9px 1px 28px lime, 15px -7px 33px purple, -22px 10px 35px orange, 27px -4px 27px purple, -27px -19px 5px yellow, 19px 27px 32px #ff0080, -25px -28px 16px lime, 2px 5px 50px #ff0080, 0px -12px 50px yellow, -12px 13px 16px red;
  }

  46.6% {
    transform: scale(1.67) rotate(374.6deg) skew(78.5deg, 57.9deg) translate(75.3px, 67.2px);
    filter: hue-rotate(137.7deg) blur(5.1px) saturate(173%);
    opacity: 0.67;
    background: magenta;
    text-shadow: -5px 24px 30px red, 1px -14px 21px lime, -11px 21px 39px #ff0080, -23px -2px 35px red, 16px -17px 12px purple, -4px -7px 45px pink, 3px 22px 6px blue, 19px -4px 30px magenta, 28px -17px 5px orange, 9px -5px 40px cyan;
  }

  46.7% {
    transform: scale(1.22) rotate(355.7deg) skew(22.4deg, -35.7deg) translate(-54.9px, 64.3px);
    filter: hue-rotate(124.4deg) blur(7.7px) saturate(291%);
    opacity: 0.4;
    background: yellow;
    text-shadow: -18px 3px 20px yellow, 17px 13px 25px #ff0080, -23px -29px 9px blue, -13px -9px 37px red, 22px 3px 15px pink, -9px 12px 21px #ff0080, -30px -5px 39px pink, -10px 21px 38px orange, -3px -10px 37px orange, -3px -29px 15px #ff0080;
  }

  46.8% {
    transform: scale(0.64) rotate(-181.3deg) skew(59.7deg, -18.6deg) translate(39.0px, -5.0px);
    filter: hue-rotate(199.9deg) blur(7.0px) saturate(196%);
    opacity: 0.51;
    background: lime;
    text-shadow: -14px 22px 16px yellow, -15px -29px 49px pink, 14px -12px 7px pink, -28px -22px 11px cyan, -19px 3px 15px pink, -24px -2px 10px purple, 9px -16px 18px lime, -23px 2px 46px lime, -3px 9px 22px red, -6px 26px 20px magenta;
  }

  46.9% {
    transform: scale(0.86) rotate(64.3deg) skew(-43.2deg, -37.8deg) translate(19.6px, 66.1px);
    filter: hue-rotate(353.0deg) blur(4.7px) saturate(144%);
    opacity: 0.72;
    background: lime;
    text-shadow: -9px -11px 18px blue, 4px -14px 5px lime, -24px -6px 19px red, -1px -15px 49px red, 6px -1px 5px orange, 19px 6px 5px #ff0080, 19px -13px 44px lime, 17px -2px 35px orange, 13px -11px 10px red, 0px 6px 11px yellow;
  }

  47.0% {
    transform: scale(1.18) rotate(123.9deg) skew(-87.1deg, -18.7deg) translate(-14.8px, 49.0px);
    filter: hue-rotate(45.6deg) blur(7.3px) saturate(272%);
    opacity: 0.93;
    background: yellow;
    text-shadow: -23px 0px 23px lime, -9px -19px 13px pink, 29px 2px 33px #ff0080, 26px -26px 42px red, 13px -14px 8px purple, 9px -14px 21px pink, 14px 13px 49px purple, 1px -1px 24px blue, -17px -1px 12px #ff0080, -26px -11px 14px magenta;
  }

  47.1% {
    transform: scale(0.72) rotate(-421.8deg) skew(31.4deg, 41.4deg) translate(89.3px, -61.4px);
    filter: hue-rotate(77.2deg) blur(9.2px) saturate(297%);
    opacity: 0.47;
    background: magenta;
    text-shadow: 16px 15px 17px cyan, 13px -13px 43px magenta, -12px 19px 34px lime, -25px -8px 27px purple, 20px 14px 39px pink, 21px -7px 6px red, 29px -21px 48px red, 30px -3px 13px orange, -14px -29px 10px lime, -12px 13px 21px red;
  }

  47.2% {
    transform: scale(1.34) rotate(-343.1deg) skew(87.5deg, 88.0deg) translate(46.4px, -64.9px);
    filter: hue-rotate(22.3deg) blur(4.5px) saturate(147%);
    opacity: 0.59;
    background: blue;
    text-shadow: 25px -28px 38px purple, -14px -23px 26px red, 7px 7px 43px lime, -3px -19px 48px yellow, -20px -20px 43px blue, 29px -16px 17px purple, -4px -30px 9px magenta, 2px -15px 18px lime, 3px -27px 8px orange, 12px 13px 32px cyan;
  }

  47.3% {
    transform: scale(0.71) rotate(36.4deg) skew(3.0deg, -42.0deg) translate(56.6px, -56.5px);
    filter: hue-rotate(48.0deg) blur(0.6px) saturate(239%);
    opacity: 0.9;
    background: blue;
    text-shadow: 7px 21px 38px blue, 22px 23px 6px blue, -30px 17px 31px pink, 12px 9px 28px #ff0080, 2px -13px 45px yellow, -12px -10px 13px #ff0080, 28px -7px 13px orange, -16px -14px 10px magenta, 19px 25px 19px purple, -15px 25px 29px cyan;
  }

  47.4% {
    transform: scale(1.51) rotate(592.2deg) skew(6.0deg, -16.0deg) translate(43.8px, -88.9px);
    filter: hue-rotate(185.5deg) blur(3.4px) saturate(201%);
    opacity: 0.79;
    background: blue;
    text-shadow: 16px 4px 33px purple, 25px 5px 11px yellow, 24px -8px 19px orange, -12px -29px 39px magenta, -12px -24px 13px orange, -30px 21px 45px magenta, 22px -13px 13px yellow, 20px -10px 16px purple, -20px 21px 18px magenta, 30px -1px 35px red;
  }

  47.5% {
    transform: scale(0.75) rotate(-33.3deg) skew(59.3deg, -75.3deg) translate(35.2px, 26.4px);
    filter: hue-rotate(83.7deg) blur(8.9px) saturate(183%);
    opacity: 0.74;
    background: lime;
    text-shadow: 8px -6px 16px cyan, 22px -11px 18px pink, -6px 30px 16px magenta, 20px -23px 31px magenta, -3px 24px 20px orange, 19px 29px 5px #ff0080, -21px 15px 28px red, -22px -11px 46px magenta, 29px 11px 12px cyan, -22px 30px 31px pink;
  }

  47.6% {
    transform: scale(1.67) rotate(595.7deg) skew(35.8deg, 54.0deg) translate(-26.8px, 81.1px);
    filter: hue-rotate(53.8deg) blur(2.1px) saturate(63%);
    opacity: 0.6;
    background: lime;
    text-shadow: -2px -6px 16px cyan, -2px -18px 43px yellow, -2px 21px 45px cyan, -8px -1px 24px pink, 6px 26px 25px yellow, -13px 20px 9px pink, -11px 18px 19px cyan, -15px -27px 9px lime, -19px -18px 20px lime, -11px -15px 15px yellow;
  }

  47.7% {
    transform: scale(1.62) rotate(24.5deg) skew(-9.2deg, -9.1deg) translate(-40.4px, 93.5px);
    filter: hue-rotate(233.6deg) blur(0.6px) saturate(112%);
    opacity: 0.36;
    background: magenta;
    text-shadow: 30px -30px 18px cyan, 28px -13px 49px blue, 8px -15px 39px magenta, -19px 27px 11px red, 30px -6px 39px lime, -15px 5px 27px magenta, -6px 6px 9px pink, 7px -28px 35px yellow, -18px -15px 16px #ff0080, 28px 20px 15px purple;
  }

  47.8% {
    transform: scale(1.65) rotate(-318.1deg) skew(83.2deg, 40.5deg) translate(-60.0px, 88.1px);
    filter: hue-rotate(300.9deg) blur(6.3px) saturate(229%);
    opacity: 0.52;
    background: yellow;
    text-shadow: 10px 17px 21px cyan, -12px -24px 50px #ff0080, 26px 14px 19px magenta, -3px -21px 10px blue, -12px 10px 13px orange, -16px -21px 49px magenta, 16px -2px 16px pink, 15px -26px 24px #ff0080, 22px -6px 41px purple, 17px -1px 34px lime;
  }

  47.9% {
    transform: scale(1.61) rotate(57.4deg) skew(-8.2deg, -7.4deg) translate(53.0px, -53.5px);
    filter: hue-rotate(169.9deg) blur(8.9px) saturate(155%);
    opacity: 0.34;
    background: cyan;
    text-shadow: 4px 27px 37px magenta, 18px -12px 9px magenta, -1px 21px 49px pink, -1px -19px 32px pink, 16px 14px 28px pink, 18px -22px 8px pink, 13px 26px 26px blue, 29px 2px 38px pink, -13px -25px 12px #ff0080, 4px 6px 8px blue;
  }

  48.0% {
    transform: scale(0.96) rotate(-129.0deg) skew(-51.9deg, -74.0deg) translate(-82.9px, -10.4px);
    filter: hue-rotate(71.2deg) blur(2.9px) saturate(228%);
    opacity: 0.91;
    background: red;
    text-shadow: -26px 2px 38px orange, -6px -18px 33px cyan, 9px -13px 35px orange, -15px -19px 10px cyan, -4px 22px 15px yellow, 7px -13px 26px pink, -26px 29px 15px cyan, -11px 12px 45px lime, -3px -16px 11px cyan, -7px 11px 9px orange;
  }

  48.1% {
    transform: scale(0.55) rotate(-431.8deg) skew(-21.8deg, 60.6deg) translate(-2.4px, -55.1px);
    filter: hue-rotate(117.4deg) blur(4.1px) saturate(214%);
    opacity: 0.75;
    background: lime;
    text-shadow: -10px -5px 36px magenta, 0px 23px 40px red, -9px -6px 44px orange, 20px 23px 45px red, 12px 15px 6px cyan, 2px -12px 31px red, -11px 20px 9px yellow, -6px 24px 39px cyan, -12px 18px 48px magenta, 30px 20px 10px pink;
  }

  48.2% {
    transform: scale(1.28) rotate(-211.6deg) skew(-25.1deg, -30.9deg) translate(-66.2px, -93.6px);
    filter: hue-rotate(57.7deg) blur(3.8px) saturate(170%);
    opacity: 0.4;
    background: purple;
    text-shadow: -18px -3px 6px cyan, -3px 5px 32px blue, 30px 25px 20px blue, -20px -12px 45px cyan, -2px 25px 44px magenta, 16px 28px 37px #ff0080, 1px 28px 8px pink, -30px 18px 19px purple, 17px 4px 10px orange, 30px 13px 21px orange;
  }

  48.3% {
    transform: scale(1.1) rotate(-489.1deg) skew(-85.9deg, 85.0deg) translate(-63.6px, 85.4px);
    filter: hue-rotate(150.0deg) blur(0.4px) saturate(162%);
    opacity: 0.32;
    background: magenta;
    text-shadow: -18px 16px 13px orange, -25px 28px 16px orange, -14px -22px 38px yellow, -25px 19px 24px cyan, 17px 15px 8px purple, -19px -4px 48px orange, 9px 16px 25px red, -25px 25px 16px orange, -14px 29px 42px cyan, 11px -9px 34px purple;
  }

  48.4% {
    transform: scale(1.97) rotate(-719.5deg) skew(-51.8deg, -5.1deg) translate(69.8px, -26.0px);
    filter: hue-rotate(276.5deg) blur(0.5px) saturate(210%);
    opacity: 0.91;
    background: red;
    text-shadow: -17px -22px 15px magenta, -7px -29px 5px magenta, 18px -23px 11px red, 25px -15px 27px red, -29px 12px 50px orange, -30px 7px 38px magenta, -9px -18px 23px #ff0080, 1px -30px 43px red, 23px -10px 40px pink, -18px 4px 20px cyan;
  }

  48.5% {
    transform: scale(0.62) rotate(-310.2deg) skew(75.7deg, -79.1deg) translate(-15.7px, 32.2px);
    filter: hue-rotate(123.4deg) blur(5.6px) saturate(108%);
    opacity: 0.35;
    background: pink;
    text-shadow: 21px 12px 45px pink, 21px 15px 20px orange, 19px -14px 13px pink, 0px -2px 39px orange, -29px 21px 36px blue, 23px 25px 19px cyan, -29px -18px 38px purple, -30px 12px 25px red, 30px 8px 16px yellow, 2px -21px 8px yellow;
  }

  48.6% {
    transform: scale(1.19) rotate(-398.3deg) skew(27.6deg, 4.8deg) translate(20.4px, 33.2px);
    filter: hue-rotate(7.7deg) blur(0.7px) saturate(66%);
    opacity: 0.9;
    background: orange;
    text-shadow: 2px 18px 5px red, 6px -5px 34px yellow, -22px 13px 42px orange, -12px -10px 10px yellow, 4px 23px 42px purple, -15px 14px 11px #ff0080, 3px 6px 50px #ff0080, 26px -23px 11px yellow, -20px -2px 48px lime, 22px -29px 17px red;
  }

  48.7% {
    transform: scale(0.56) rotate(287.6deg) skew(-76.3deg, 74.8deg) translate(46.2px, -37.6px);
    filter: hue-rotate(336.7deg) blur(8.2px) saturate(132%);
    opacity: 0.52;
    background: lime;
    text-shadow: -24px -28px 33px lime, -21px -9px 8px blue, -6px 27px 33px orange, -2px -22px 21px pink, 5px 26px 18px cyan, 18px -14px 14px red, 8px -14px 40px lime, 2px -13px 10px orange, -18px 1px 20px purple, -18px -23px 49px blue;
  }

  48.8% {
    transform: scale(1.46) rotate(-592.2deg) skew(33.5deg, -89.6deg) translate(0.8px, -13.9px);
    filter: hue-rotate(145.7deg) blur(8.7px) saturate(149%);
    opacity: 0.54;
    background: orange;
    text-shadow: -20px 25px 44px cyan, -21px -14px 44px cyan, -25px -24px 33px yellow, 18px -9px 33px red, -12px 30px 7px yellow, -24px -20px 6px pink, 28px -19px 49px magenta, 19px 9px 46px lime, 24px 7px 26px cyan, -9px 22px 32px yellow;
  }

  48.9% {
    transform: scale(0.74) rotate(296.9deg) skew(12.5deg, -34.4deg) translate(-67.7px, 69.2px);
    filter: hue-rotate(294.7deg) blur(9.3px) saturate(56%);
    opacity: 0.94;
    background: red;
    text-shadow: -22px -22px 40px purple, 12px 5px 30px orange, 19px 29px 44px cyan, 30px -9px 22px red, 28px -24px 46px pink, -30px -30px 45px purple, -4px 21px 43px magenta, 12px -24px 21px #ff0080, 21px 22px 31px cyan, -7px 3px 10px pink;
  }

  49.0% {
    transform: scale(0.89) rotate(-70.3deg) skew(-1.0deg, 61.3deg) translate(69.1px, 3.9px);
    filter: hue-rotate(134.8deg) blur(8.2px) saturate(266%);
    opacity: 0.84;
    background: cyan;
    text-shadow: -24px -8px 15px red, 1px -23px 18px cyan, -29px -19px 15px red, 21px 6px 47px lime, 2px -21px 38px purple, -12px 7px 49px blue, 15px 10px 27px lime, 9px -25px 46px lime, -10px 22px 48px orange, -2px -21px 45px purple;
  }

  49.1% {
    transform: scale(1.28) rotate(-141.8deg) skew(56.2deg, 72.3deg) translate(-18.4px, -60.6px);
    filter: hue-rotate(302.7deg) blur(3.0px) saturate(178%);
    opacity: 0.97;
    background: #ff0080;
    text-shadow: 23px 13px 27px magenta, -6px 28px 39px yellow, 11px -21px 41px magenta, 26px 17px 11px red, -17px 6px 8px orange, 14px 10px 5px yellow, 30px -26px 15px blue, 15px 2px 28px purple, 7px 15px 24px blue, -24px 20px 30px blue;
  }

  49.2% {
    transform: scale(0.87) rotate(485.7deg) skew(-43.7deg, 57.3deg) translate(32.0px, 20.9px);
    filter: hue-rotate(95.9deg) blur(0.9px) saturate(296%);
    opacity: 0.98;
    background: lime;
    text-shadow: 22px 9px 10px pink, -27px 19px 46px purple, -9px -22px 28px magenta, -2px -26px 32px purple, -30px 20px 32px yellow, -7px -17px 9px pink, -15px -7px 30px cyan, 12px 23px 16px lime, 8px -28px 6px yellow, 27px -12px 27px pink;
  }

  49.3% {
    transform: scale(0.62) rotate(291.4deg) skew(56.9deg, 78.3deg) translate(-58.4px, -10.0px);
    filter: hue-rotate(94.8deg) blur(2.3px) saturate(258%);
    opacity: 0.44;
    background: #ff0080;
    text-shadow: 6px 23px 32px #ff0080, 5px 2px 37px lime, 7px -14px 8px yellow, 28px 25px 9px blue, 6px -16px 6px cyan, -27px -21px 13px pink, 6px 23px 20px #ff0080, 17px 17px 6px blue, -19px -24px 47px orange, -18px -4px 42px cyan;
  }

  49.4% {
    transform: scale(1.06) rotate(122.7deg) skew(-52.2deg, -74.6deg) translate(-71.3px, -71.3px);
    filter: hue-rotate(213.4deg) blur(1.0px) saturate(283%);
    opacity: 0.76;
    background: magenta;
    text-shadow: -11px 9px 22px lime, 12px -18px 30px pink, -4px 20px 38px purple, 9px 11px 9px #ff0080, 28px -18px 13px purple, 20px 30px 46px orange, -3px 18px 29px blue, 5px 12px 38px purple, 27px 9px 44px cyan, -25px 13px 49px magenta;
  }

  49.5% {
    transform: scale(1.8) rotate(-534.8deg) skew(-3.1deg, -3.1deg) translate(-57.7px, -77.6px);
    filter: hue-rotate(15.0deg) blur(5.2px) saturate(111%);
    opacity: 0.83;
    background: lime;
    text-shadow: -5px 17px 28px orange, -5px -27px 15px magenta, 11px 29px 23px orange, 28px -20px 41px cyan, -8px -25px 17px cyan, 2px 4px 32px purple, 27px 10px 9px orange, -26px 22px 43px magenta, 18px 8px 39px yellow, 17px -15px 21px purple;
  }

  49.6% {
    transform: scale(0.55) rotate(453.7deg) skew(29.5deg, -1.5deg) translate(-16.4px, -98.1px);
    filter: hue-rotate(276.1deg) blur(5.2px) saturate(173%);
    opacity: 0.87;
    background: lime;
    text-shadow: 2px -1px 41px lime, 16px -14px 48px red, 26px 15px 25px pink, 11px -22px 46px blue, -17px -2px 37px lime, 11px 4px 18px blue, 24px 26px 28px blue, -14px 29px 9px purple, -6px -20px 18px yellow, -18px 13px 25px #ff0080;
  }

  49.7% {
    transform: scale(1.93) rotate(-363.2deg) skew(81.6deg, 39.9deg) translate(-77.2px, -50.1px);
    filter: hue-rotate(129.8deg) blur(10.0px) saturate(107%);
    opacity: 0.58;
    background: #ff0080;
    text-shadow: 24px -23px 7px lime, 22px -7px 16px red, 24px 10px 7px orange, 2px -8px 18px purple, -14px 10px 14px magenta, 15px 24px 8px #ff0080, -8px -8px 13px magenta, -1px -13px 35px pink, 22px 10px 29px cyan, -30px 9px 6px lime;
  }

  49.8% {
    transform: scale(0.73) rotate(602.6deg) skew(74.2deg, -71.7deg) translate(52.6px, -43.3px);
    filter: hue-rotate(293.5deg) blur(2.3px) saturate(210%);
    opacity: 0.55;
    background: pink;
    text-shadow: 12px -30px 26px yellow, -24px 24px 30px yellow, 9px 16px 43px #ff0080, 16px 17px 49px #ff0080, -9px -6px 10px pink, -3px -6px 6px red, -12px 1px 15px magenta, 11px -11px 36px blue, 27px -13px 14px red, 1px 30px 38px yellow;
  }

  49.9% {
    transform: scale(1.36) rotate(-468.2deg) skew(47.8deg, -48.3deg) translate(-73.7px, -61.3px);
    filter: hue-rotate(71.2deg) blur(3.7px) saturate(108%);
    opacity: 0.61;
    background: #ff0080;
    text-shadow: -2px 14px 37px cyan, -12px -28px 32px magenta, -30px 15px 10px red, -15px 21px 8px pink, 8px -7px 30px magenta, -21px -3px 24px orange, 10px 19px 35px red, 6px -10px 27px lime, -2px 9px 49px pink, -19px 19px 50px cyan;
  }

  50.0% {
    transform: scale(1.7) rotate(-665.4deg) skew(6.6deg, 29.4deg) translate(-83.9px, -93.7px);
    filter: hue-rotate(332.2deg) blur(7.7px) saturate(188%);
    opacity: 0.77;
    background: purple;
    text-shadow: 24px -29px 45px purple, -27px -21px 39px yellow, -2px -21px 30px #ff0080, 30px -22px 17px blue, -10px -2px 44px blue, 26px 6px 37px blue, -3px 2px 22px red, 9px -21px 34px #ff0080, 11px -19px 42px #ff0080, -6px 24px 16px red;
  }

  50.1% {
    transform: scale(0.84) rotate(-717.3deg) skew(-9.7deg, 24.9deg) translate(-58.1px, 60.9px);
    filter: hue-rotate(129.4deg) blur(5.6px) saturate(88%);
    opacity: 0.55;
    background: pink;
    text-shadow: 30px 23px 39px cyan, 25px 2px 26px magenta, 13px 7px 22px lime, 3px -24px 9px cyan, 19px 6px 24px orange, 10px 30px 38px blue, 12px 14px 44px red, -29px -24px 5px blue, -16px -9px 29px cyan, 29px -23px 49px magenta;
  }

  50.2% {
    transform: scale(0.92) rotate(244.7deg) skew(-71.8deg, 12.9deg) translate(95.4px, 83.5px);
    filter: hue-rotate(183.2deg) blur(2.4px) saturate(189%);
    opacity: 0.98;
    background: orange;
    text-shadow: 28px 20px 25px lime, -10px 4px 39px yellow, 11px 15px 48px purple, 14px -20px 21px yellow, -6px -6px 14px lime, 4px 14px 29px orange, -11px 30px 40px blue, 8px 11px 44px #ff0080, -28px -15px 28px orange, -20px -29px 18px orange;
  }

  50.3% {
    transform: scale(0.5) rotate(570.2deg) skew(-21.9deg, -37.1deg) translate(40.2px, 99.6px);
    filter: hue-rotate(76.0deg) blur(4.8px) saturate(175%);
    opacity: 1.0;
    background: cyan;
    text-shadow: 21px -21px 41px red, -28px 18px 34px cyan, -7px 6px 36px purple, 9px -1px 28px pink, 29px 10px 42px pink, 5px 2px 34px cyan, -1px -23px 35px lime, 8px 8px 44px purple, 17px 11px 41px #ff0080, 10px -22px 17px cyan;
  }

  50.4% {
    transform: scale(1.84) rotate(487.3deg) skew(-73.8deg, -42.6deg) translate(14.8px, -40.4px);
    filter: hue-rotate(19.5deg) blur(6.6px) saturate(237%);
    opacity: 0.78;
    background: blue;
    text-shadow: 8px -25px 46px #ff0080, -22px -10px 32px yellow, 18px 3px 11px purple, -9px -3px 32px purple, 1px -12px 25px lime, -29px -6px 21px orange, 1px 3px 28px lime, 10px -11px 21px blue, 19px 6px 50px #ff0080, 21px -5px 22px yellow;
  }

  50.5% {
    transform: scale(1.08) rotate(4.9deg) skew(-20.1deg, 14.1deg) translate(-19.3px, 7.4px);
    filter: hue-rotate(98.4deg) blur(4.3px) saturate(60%);
    opacity: 0.76;
    background: red;
    text-shadow: -23px 5px 31px yellow, -11px 17px 32px magenta, 7px 2px 29px #ff0080, -9px 24px 45px lime, -18px 0px 12px purple, -30px -11px 5px blue, -29px -20px 19px blue, -22px -22px 16px red, 16px -23px 22px magenta, -30px -21px 45px cyan;
  }

  50.6% {
    transform: scale(1.66) rotate(-190.5deg) skew(1.1deg, 28.8deg) translate(-87.4px, 92.2px);
    filter: hue-rotate(211.5deg) blur(4.2px) saturate(230%);
    opacity: 0.81;
    background: lime;
    text-shadow: 13px 3px 36px red, -15px -16px 13px #ff0080, -22px -30px 6px orange, 11px -26px 35px cyan, 13px -12px 15px yellow, -13px 8px 47px pink, 0px -26px 28px purple, 20px -10px 19px yellow, 26px 2px 30px #ff0080, -16px 7px 24px magenta;
  }

  50.7% {
    transform: scale(1.25) rotate(339.3deg) skew(67.6deg, 39.2deg) translate(-16.8px, -90.0px);
    filter: hue-rotate(118.4deg) blur(6.9px) saturate(157%);
    opacity: 0.76;
    background: cyan;
    text-shadow: 23px -29px 13px orange, -24px -23px 41px orange, 12px -16px 49px red, 22px 9px 22px pink, 19px 21px 9px cyan, -8px -23px 27px purple, 19px 27px 11px pink, 18px 23px 43px blue, 26px -26px 49px #ff0080, 16px -3px 23px cyan;
  }

  50.8% {
    transform: scale(1.41) rotate(484.7deg) skew(-40.8deg, 64.3deg) translate(82.7px, -92.8px);
    filter: hue-rotate(28.2deg) blur(6.2px) saturate(59%);
    opacity: 0.54;
    background: lime;
    text-shadow: -8px -26px 30px cyan, -19px -3px 44px cyan, 15px 8px 6px #ff0080, 25px 15px 33px purple, -12px -27px 26px pink, 27px -7px 46px purple, 25px 7px 25px purple, -29px -19px 40px red, -12px -30px 38px orange, 20px 1px 10px yellow;
  }

  50.9% {
    transform: scale(1.62) rotate(452.1deg) skew(46.3deg, -45.6deg) translate(94.6px, -61.7px);
    filter: hue-rotate(157.1deg) blur(0.4px) saturate(241%);
    opacity: 0.33;
    background: orange;
    text-shadow: 1px -9px 15px lime, -16px -13px 11px #ff0080, 12px -7px 39px yellow, -18px -19px 15px orange, 17px -23px 18px blue, -28px 22px 47px red, 8px -9px 46px magenta, 11px 16px 33px purple, 13px 21px 39px red, 12px -27px 43px magenta;
  }

  51.0% {
    transform: scale(1.8) rotate(-42.2deg) skew(3.0deg, 20.4deg) translate(66.8px, -67.4px);
    filter: hue-rotate(179.2deg) blur(3.9px) saturate(201%);
    opacity: 0.35;
    background: orange;
    text-shadow: 18px -6px 16px orange, -5px 2px 16px yellow, -19px -5px 14px orange, -21px 12px 38px yellow, -9px 23px 23px red, 10px 19px 47px #ff0080, 21px -7px 27px pink, 15px 24px 23px purple, 27px -20px 31px magenta, 1px -7px 29px yellow;
  }

  51.1% {
    transform: scale(1.41) rotate(-138.0deg) skew(29.8deg, -25.1deg) translate(88.8px, -18.2px);
    filter: hue-rotate(225.6deg) blur(5.2px) saturate(227%);
    opacity: 0.5;
    background: red;
    text-shadow: -20px -22px 50px yellow, -29px -22px 24px blue, -6px 26px 8px magenta, -11px -4px 31px #ff0080, -5px 22px 9px cyan, -14px -18px 9px orange, 13px -29px 19px cyan, 13px -11px 28px magenta, 27px 4px 18px blue, 11px 5px 43px orange;
  }

  51.2% {
    transform: scale(1.78) rotate(-612.0deg) skew(22.3deg, -5.3deg) translate(22.2px, 53.2px);
    filter: hue-rotate(220.6deg) blur(4.0px) saturate(299%);
    opacity: 0.8;
    background: cyan;
    text-shadow: -19px 11px 11px magenta, 11px -14px 7px yellow, 27px -16px 20px orange, 5px -20px 31px red, 17px -28px 49px blue, -2px 8px 8px magenta, 19px -15px 22px yellow, 25px -30px 34px pink, 19px -11px 10px red, 19px 22px 33px #ff0080;
  }

  51.3% {
    transform: scale(1.1) rotate(335.2deg) skew(57.1deg, 78.1deg) translate(56.4px, -72.5px);
    filter: hue-rotate(30.3deg) blur(0.5px) saturate(68%);
    opacity: 0.35;
    background: lime;
    text-shadow: -27px -12px 9px orange, 6px -25px 24px orange, 18px -23px 26px yellow, 22px -22px 30px lime, 22px -27px 48px purple, -25px 4px 46px orange, 26px -1px 14px magenta, 10px 29px 46px cyan, -8px 15px 5px cyan, 15px 30px 15px orange;
  }

  51.4% {
    transform: scale(0.86) rotate(431.1deg) skew(-87.0deg, 39.8deg) translate(-28.0px, 57.3px);
    filter: hue-rotate(32.6deg) blur(3.2px) saturate(249%);
    opacity: 0.7;
    background: cyan;
    text-shadow: 7px -4px 47px yellow, 1px 20px 38px magenta, 22px 30px 20px cyan, -4px 30px 7px purple, 15px 8px 40px purple, 4px 27px 50px yellow, 11px 30px 37px red, -7px 23px 15px magenta, -29px -4px 49px lime, 6px 13px 20px magenta;
  }

  51.5% {
    transform: scale(0.78) rotate(-97.3deg) skew(-76.3deg, -24.1deg) translate(-40.0px, 93.2px);
    filter: hue-rotate(142.4deg) blur(7.9px) saturate(146%);
    opacity: 0.66;
    background: red;
    text-shadow: -26px -25px 38px #ff0080, -18px 30px 12px magenta, 17px 27px 28px orange, -3px 19px 6px orange, -4px -18px 41px lime, 0px 25px 50px blue, -11px 1px 19px red, 0px 23px 40px orange, 8px -19px 26px #ff0080, 4px 0px 38px red;
  }

  51.6% {
    transform: scale(0.63) rotate(132.6deg) skew(37.7deg, -44.3deg) translate(52.7px, -76.6px);
    filter: hue-rotate(52.2deg) blur(9.4px) saturate(247%);
    opacity: 0.71;
    background: blue;
    text-shadow: -9px 5px 39px magenta, 19px 27px 30px orange, -25px -13px 6px cyan, 24px 28px 42px red, -14px -3px 46px cyan, 22px -6px 13px lime, 7px -30px 37px yellow, 5px 17px 48px orange, -17px 15px 26px yellow, -18px -29px 43px red;
  }

  51.7% {
    transform: scale(0.8) rotate(-44.9deg) skew(86.4deg, 89.7deg) translate(-35.5px, -59.4px);
    filter: hue-rotate(359.5deg) blur(7.2px) saturate(255%);
    opacity: 0.38;
    background: magenta;
    text-shadow: -8px 20px 15px yellow, 30px -15px 39px pink, -12px 8px 29px yellow, -11px -19px 13px #ff0080, -23px 29px 35px orange, 9px -18px 21px orange, -27px -9px 16px orange, -3px -27px 32px magenta, -8px 25px 44px red, 8px 1px 48px #ff0080;
  }

  51.8% {
    transform: scale(1.52) rotate(515.3deg) skew(-63.0deg, -33.0deg) translate(9.1px, -16.1px);
    filter: hue-rotate(110.4deg) blur(8.5px) saturate(194%);
    opacity: 0.58;
    background: orange;
    text-shadow: 11px 24px 45px orange, 15px -3px 32px lime, -10px -1px 20px lime, 23px -26px 49px pink, 28px -25px 26px #ff0080, -9px -21px 25px blue, -23px 30px 35px red, -18px -26px 36px magenta, -24px -25px 41px red, -15px -5px 45px blue;
  }

  51.9% {
    transform: scale(1.09) rotate(-58.5deg) skew(70.6deg, -11.6deg) translate(46.2px, -15.3px);
    filter: hue-rotate(263.8deg) blur(3.1px) saturate(151%);
    opacity: 0.53;
    background: blue;
    text-shadow: -27px 10px 24px magenta, 11px -9px 11px yellow, -21px -2px 5px yellow, 12px 11px 47px pink, 15px 27px 26px orange, 12px -19px 30px lime, -23px -1px 16px cyan, 17px 11px 29px cyan, 14px -3px 30px cyan, -21px -21px 47px lime;
  }

  52.0% {
    transform: scale(1.13) rotate(153.1deg) skew(-62.0deg, -24.1deg) translate(-36.1px, 53.6px);
    filter: hue-rotate(87.3deg) blur(9.2px) saturate(72%);
    opacity: 0.64;
    background: yellow;
    text-shadow: -24px 6px 26px blue, -28px -23px 7px orange, 7px 6px 19px lime, -14px 17px 50px lime, 22px 6px 16px orange, -26px 14px 41px #ff0080, -2px -20px 41px #ff0080, 7px -29px 46px cyan, -17px -30px 31px pink, 0px -4px 12px yellow;
  }

  52.1% {
    transform: scale(1.1) rotate(-635.9deg) skew(-48.3deg, 28.1deg) translate(2.8px, 15.8px);
    filter: hue-rotate(15.6deg) blur(1.4px) saturate(166%);
    opacity: 0.49;
    background: cyan;
    text-shadow: 23px 8px 36px red, 19px -29px 37px cyan, 30px -29px 17px pink, 18px -10px 24px blue, 12px -8px 22px red, -6px 20px 39px magenta, -28px 10px 23px blue, -24px -2px 23px yellow, 10px -14px 24px #ff0080, 11px -28px 49px red;
  }

  52.2% {
    transform: scale(1.44) rotate(-140.3deg) skew(35.3deg, -15.0deg) translate(92.1px, 80.7px);
    filter: hue-rotate(202.7deg) blur(2.5px) saturate(117%);
    opacity: 0.67;
    background: orange;
    text-shadow: 27px 3px 11px lime, 8px 25px 11px yellow, 1px -5px 38px blue, 23px -23px 15px cyan, -7px 24px 28px magenta, 27px -19px 44px blue, -8px -4px 33px magenta, 14px 9px 16px yellow, -14px 4px 20px orange, 8px -5px 29px cyan;
  }

  52.3% {
    transform: scale(1.05) rotate(-109.4deg) skew(-24.6deg, -21.8deg) translate(-72.6px, -78.8px);
    filter: hue-rotate(354.6deg) blur(6.3px) saturate(299%);
    opacity: 0.89;
    background: magenta;
    text-shadow: 28px -28px 46px red, -2px -5px 45px red, -29px -29px 6px blue, -7px -26px 7px magenta, 3px 10px 39px yellow, 15px -7px 44px orange, -19px -27px 21px orange, -2px 0px 36px lime, 4px -20px 11px #ff0080, -6px -20px 23px #ff0080;
  }

  52.4% {
    transform: scale(1.08) rotate(-618.7deg) skew(25.1deg, -38.3deg) translate(-37.4px, -44.8px);
    filter: hue-rotate(109.5deg) blur(8.6px) saturate(54%);
    opacity: 0.66;
    background: purple;
    text-shadow: -20px 29px 12px lime, -27px -4px 26px blue, -23px -21px 33px pink, -24px -9px 20px magenta, 19px -4px 16px red, 0px 19px 8px purple, -26px 25px 19px purple, 3px 22px 37px #ff0080, -26px -21px 38px #ff0080, 29px -27px 20px #ff0080;
  }

  52.5% {
    transform: scale(1.87) rotate(419.9deg) skew(34.3deg, 85.5deg) translate(-26.8px, 22.6px);
    filter: hue-rotate(153.2deg) blur(7.9px) saturate(77%);
    opacity: 1.0;
    background: red;
    text-shadow: -22px 29px 42px cyan, 0px 3px 19px red, -26px 0px 38px lime, -19px 4px 16px magenta, 19px -17px 41px red, 21px 9px 13px cyan, 17px 23px 47px #ff0080, -16px -17px 50px cyan, 4px 19px 32px red, 29px 13px 30px #ff0080;
  }

  52.6% {
    transform: scale(1.87) rotate(38.8deg) skew(-18.5deg, 37.2deg) translate(-84.9px, -72.7px);
    filter: hue-rotate(321.0deg) blur(3.2px) saturate(224%);
    opacity: 0.7;
    background: red;
    text-shadow: -7px 18px 44px pink, 4px -16px 43px yellow, -5px 7px 45px purple, 10px 23px 13px purple, -19px -22px 23px yellow, -10px -8px 50px orange, 14px -26px 5px #ff0080, 14px -24px 50px lime, 1px 29px 43px lime, -7px 23px 11px red;
  }

  52.7% {
    transform: scale(1.23) rotate(-180.4deg) skew(-3.1deg, 89.7deg) translate(70.3px, 44.1px);
    filter: hue-rotate(230.9deg) blur(9.5px) saturate(77%);
    opacity: 0.5;
    background: red;
    text-shadow: -9px -26px 20px orange, 20px -27px 20px cyan, 22px -12px 37px orange, 4px 15px 40px blue, 1px 5px 30px blue, -1px 2px 50px #ff0080, 27px -21px 35px magenta, -28px 5px 34px cyan, 17px -3px 22px #ff0080, 29px -13px 19px lime;
  }

  52.8% {
    transform: scale(1.18) rotate(255.2deg) skew(-33.5deg, -25.6deg) translate(62.0px, 82.6px);
    filter: hue-rotate(47.7deg) blur(1.3px) saturate(67%);
    opacity: 0.73;
    background: cyan;
    text-shadow: 25px 15px 24px blue, -15px 23px 40px cyan, 26px 30px 9px orange, -1px 21px 22px #ff0080, 9px 27px 12px pink, -16px -17px 28px lime, 11px -4px 50px cyan, 2px -22px 39px orange, -11px 23px 17px yellow, 13px -24px 15px purple;
  }

  52.9% {
    transform: scale(1.39) rotate(-271.5deg) skew(81.2deg, -8.8deg) translate(-13.3px, -32.5px);
    filter: hue-rotate(339.6deg) blur(2.4px) saturate(196%);
    opacity: 0.95;
    background: orange;
    text-shadow: 20px -15px 20px blue, 20px -16px 47px orange, -19px -9px 36px #ff0080, -22px 30px 32px pink, 21px 5px 14px purple, -17px 14px 19px red, 14px 22px 30px blue, -21px -16px 26px magenta, -18px 24px 47px pink, 5px 9px 34px #ff0080;
  }

  53.0% {
    transform: scale(0.71) rotate(466.4deg) skew(-75.6deg, 37.1deg) translate(-79.8px, 24.4px);
    filter: hue-rotate(2.3deg) blur(4.4px) saturate(202%);
    opacity: 0.9;
    background: blue;
    text-shadow: -25px 22px 16px lime, 22px -14px 29px magenta, -14px 12px 36px blue, -6px 21px 28px purple, -8px 7px 24px lime, 29px 21px 50px pink, 13px -19px 37px purple, 8px 17px 47px lime, -10px -17px 29px purple, 1px -22px 43px purple;
  }

  53.1% {
    transform: scale(1.86) rotate(-547.5deg) skew(-17.8deg, 85.2deg) translate(77.0px, -3.4px);
    filter: hue-rotate(197.8deg) blur(4.9px) saturate(133%);
    opacity: 0.99;
    background: red;
    text-shadow: 14px -2px 19px red, 1px 11px 10px lime, -7px 22px 43px #ff0080, -14px -30px 12px purple, 5px 7px 7px #ff0080, 29px 4px 41px yellow, 0px -24px 44px #ff0080, 6px 25px 41px lime, 27px 25px 12px cyan, -3px -9px 26px purple;
  }

  53.2% {
    transform: scale(1.17) rotate(-505.3deg) skew(12.4deg, 27.9deg) translate(79.3px, 64.8px);
    filter: hue-rotate(225.1deg) blur(4.7px) saturate(198%);
    opacity: 0.7;
    background: cyan;
    text-shadow: -20px -13px 15px pink, -15px 24px 29px purple, 19px 13px 23px pink, 2px 3px 39px blue, -3px 15px 48px cyan, 19px 6px 21px cyan, -4px -7px 22px blue, 1px -1px 41px magenta, -22px -17px 7px yellow, 22px 23px 14px purple;
  }

  53.3% {
    transform: scale(1.78) rotate(299.1deg) skew(-23.4deg, 75.1deg) translate(-65.1px, -30.2px);
    filter: hue-rotate(331.7deg) blur(9.8px) saturate(223%);
    opacity: 0.84;
    background: red;
    text-shadow: -16px 25px 27px pink, 11px 7px 28px lime, 17px 1px 12px pink, 26px 24px 32px yellow, 5px -8px 36px red, 2px 22px 38px pink, -2px -3px 48px pink, 1px 29px 31px pink, 22px -18px 14px #ff0080, 24px 3px 10px lime;
  }

  53.4% {
    transform: scale(1.54) rotate(-122.5deg) skew(40.8deg, -74.3deg) translate(-6.7px, 44.3px);
    filter: hue-rotate(66.2deg) blur(1.9px) saturate(260%);
    opacity: 0.88;
    background: orange;
    text-shadow: 23px -25px 36px lime, -12px -2px 19px yellow, -12px -10px 9px magenta, -9px -24px 28px lime, -5px 22px 32px yellow, -6px 30px 5px magenta, 5px -17px 21px pink, -20px 18px 20px orange, 0px 1px 48px magenta, -24px -18px 12px magenta;
  }

  53.5% {
    transform: scale(1.16) rotate(-518.4deg) skew(-77.6deg, -53.5deg) translate(65.2px, -55.1px);
    filter: hue-rotate(351.2deg) blur(2.8px) saturate(254%);
    opacity: 0.31;
    background: purple;
    text-shadow: -12px 24px 33px blue, 13px -5px 39px orange, 15px 17px 50px orange, -9px -26px 34px cyan, -9px 5px 8px yellow, 13px 7px 7px red, -4px -19px 17px #ff0080, 0px -4px 21px blue, -19px 18px 38px lime, 11px 0px 45px red;
  }

  53.6% {
    transform: scale(1.3) rotate(326.9deg) skew(73.5deg, 85.4deg) translate(12.6px, 72.4px);
    filter: hue-rotate(24.8deg) blur(1.3px) saturate(267%);
    opacity: 0.66;
    background: yellow;
    text-shadow: 29px 25px 8px #ff0080, 19px -30px 28px yellow, -26px 17px 6px lime, -2px -18px 48px pink, 4px 9px 7px #ff0080, -26px -27px 18px orange, -4px -7px 15px magenta, -15px 21px 34px magenta, 0px 19px 39px magenta, 8px -9px 26px orange;
  }

  53.7% {
    transform: scale(1.59) rotate(691.6deg) skew(79.4deg, -36.1deg) translate(-24.6px, 71.6px);
    filter: hue-rotate(22.9deg) blur(3.0px) saturate(125%);
    opacity: 0.46;
    background: blue;
    text-shadow: -15px -4px 29px magenta, -28px -4px 44px magenta, 16px 14px 40px magenta, 3px -3px 32px cyan, 1px 10px 43px pink, 4px -18px 10px cyan, -29px -17px 45px red, 25px 9px 41px purple, 4px -25px 33px cyan, 24px -21px 35px pink;
  }

  53.8% {
    transform: scale(0.87) rotate(368.4deg) skew(66.4deg, -61.6deg) translate(82.5px, -53.8px);
    filter: hue-rotate(232.5deg) blur(4.8px) saturate(197%);
    opacity: 0.76;
    background: #ff0080;
    text-shadow: -12px 27px 46px orange, -25px 21px 26px purple, 16px -28px 6px orange, -16px -6px 46px magenta, -10px 3px 26px blue, 29px 18px 36px cyan, 5px -12px 48px lime, -5px -13px 22px cyan, -9px 25px 15px lime, 15px 3px 17px purple;
  }

  53.9% {
    transform: scale(1.54) rotate(-189.3deg) skew(-28.6deg, -74.3deg) translate(-46.3px, 2.0px);
    filter: hue-rotate(198.1deg) blur(7.1px) saturate(254%);
    opacity: 0.94;
    background: pink;
    text-shadow: 12px -25px 10px magenta, 20px -4px 6px cyan, -19px -25px 26px lime, -14px 8px 39px blue, -4px 20px 47px #ff0080, -16px -6px 44px orange, 24px -22px 13px cyan, 15px 28px 13px magenta, -22px 2px 49px #ff0080, 3px -11px 48px magenta;
  }

  54.0% {
    transform: scale(1.41) rotate(-261.8deg) skew(-81.3deg, -63.3deg) translate(-7.8px, 95.2px);
    filter: hue-rotate(246.7deg) blur(4.9px) saturate(179%);
    opacity: 0.63;
    background: pink;
    text-shadow: 20px 13px 41px red, -14px -23px 22px yellow, -4px -24px 24px purple, -11px -12px 6px pink, -17px -9px 25px yellow, 0px 8px 47px blue, 1px 27px 15px red, 11px -28px 7px orange, -9px 5px 39px #ff0080, -30px 23px 27px purple;
  }

  54.1% {
    transform: scale(0.8) rotate(-297.3deg) skew(-50.8deg, 87.5deg) translate(65.0px, -7.5px);
    filter: hue-rotate(213.5deg) blur(7.1px) saturate(205%);
    opacity: 0.64;
    background: blue;
    text-shadow: -16px -29px 8px blue, -28px 14px 6px cyan, -7px -13px 13px lime, 21px -6px 34px blue, 30px 4px 38px yellow, 5px -27px 29px blue, 0px -23px 27px magenta, -18px -20px 24px orange, -25px -22px 43px purple, 20px -23px 36px purple;
  }

  54.2% {
    transform: scale(1.37) rotate(-167.5deg) skew(67.8deg, 1.0deg) translate(10.1px, 64.1px);
    filter: hue-rotate(108.7deg) blur(1.7px) saturate(103%);
    opacity: 0.45;
    background: blue;
    text-shadow: -23px 14px 34px blue, -3px 7px 17px cyan, -25px -24px 38px orange, 28px 25px 34px orange, 30px 13px 11px pink, 24px 21px 16px lime, 0px -25px 14px cyan, -19px 11px 31px purple, 26px 30px 7px red, 24px -24px 44px blue;
  }

  54.3% {
    transform: scale(1.23) rotate(-666.3deg) skew(-54.0deg, -51.9deg) translate(20.5px, -0.3px);
    filter: hue-rotate(159.0deg) blur(2.7px) saturate(114%);
    opacity: 0.53;
    background: lime;
    text-shadow: 5px -17px 24px orange, -23px 19px 49px red, -7px 9px 40px cyan, -3px -4px 34px pink, -15px -8px 28px orange, 18px 4px 27px yellow, -19px 12px 45px orange, 7px 24px 31px cyan, -10px 11px 23px #ff0080, 19px 3px 27px cyan;
  }

  54.4% {
    transform: scale(1.76) rotate(-104.3deg) skew(-30.1deg, -50.9deg) translate(33.8px, 25.7px);
    filter: hue-rotate(206.1deg) blur(9.3px) saturate(257%);
    opacity: 0.67;
    background: pink;
    text-shadow: -16px 14px 20px blue, 1px -12px 36px blue, 28px -28px 29px cyan, -10px -23px 31px #ff0080, 26px -20px 11px #ff0080, 11px 17px 16px pink, 12px 5px 11px orange, -1px 8px 43px orange, -25px 11px 47px yellow, -18px -5px 10px red;
  }

  54.5% {
    transform: scale(0.71) rotate(-429.2deg) skew(68.4deg, -72.3deg) translate(50.3px, -94.5px);
    filter: hue-rotate(347.2deg) blur(8.3px) saturate(60%);
    opacity: 0.65;
    background: #ff0080;
    text-shadow: 22px -1px 48px red, 18px 3px 7px red, 18px -23px 36px #ff0080, 5px -1px 29px blue, -8px -4px 25px #ff0080, -10px 19px 22px magenta, 0px 9px 38px cyan, 26px 4px 14px purple, 16px 19px 19px pink, -21px -21px 44px pink;
  }

  54.6% {
    transform: scale(0.98) rotate(-587.8deg) skew(-60.3deg, -53.7deg) translate(18.3px, -74.6px);
    filter: hue-rotate(294.5deg) blur(8.6px) saturate(281%);
    opacity: 0.87;
    background: orange;
    text-shadow: 26px 12px 8px pink, -9px -13px 8px purple, -1px 13px 17px pink, -16px 5px 20px pink, 4px 23px 38px magenta, 19px 21px 19px #ff0080, 18px -18px 7px red, -12px 2px 27px lime, 18px -13px 35px red, 27px -29px 38px magenta;
  }

  54.7% {
    transform: scale(0.84) rotate(-60.7deg) skew(59.2deg, -22.5deg) translate(42.5px, 63.5px);
    filter: hue-rotate(35.0deg) blur(7.6px) saturate(223%);
    opacity: 0.96;
    background: blue;
    text-shadow: 30px 25px 19px pink, 2px -5px 17px lime, -6px 27px 47px orange, 10px 20px 38px yellow, 2px -19px 34px #ff0080, 14px 0px 37px #ff0080, 21px 0px 25px red, -15px -14px 39px pink, 15px -19px 45px cyan, -17px -17px 23px cyan;
  }

  54.8% {
    transform: scale(0.54) rotate(-84.6deg) skew(-22.9deg, 11.5deg) translate(18.0px, 92.0px);
    filter: hue-rotate(145.5deg) blur(4.0px) saturate(269%);
    opacity: 0.78;
    background: yellow;
    text-shadow: 16px -2px 19px purple, -14px -2px 48px purple, -5px 17px 10px #ff0080, -11px -23px 34px magenta, -29px 17px 14px orange, -9px -28px 31px blue, 6px 17px 47px magenta, -14px -4px 25px purple, 28px -28px 23px magenta, -3px -19px 24px yellow;
  }

  54.9% {
    transform: scale(1.07) rotate(-449.4deg) skew(-9.1deg, 15.7deg) translate(71.8px, 84.8px);
    filter: hue-rotate(176.5deg) blur(6.2px) saturate(219%);
    opacity: 0.99;
    background: lime;
    text-shadow: 2px -22px 7px orange, 11px 19px 19px orange, -14px 1px 49px orange, 28px 26px 50px orange, -23px 3px 18px #ff0080, -22px -26px 32px red, -10px -16px 33px orange, -10px -22px 19px blue, 29px -21px 34px blue, 28px -4px 35px red;
  }

  55.0% {
    transform: scale(1.7) rotate(-9.9deg) skew(-2.3deg, -35.9deg) translate(27.1px, -37.9px);
    filter: hue-rotate(30.6deg) blur(6.6px) saturate(184%);
    opacity: 0.63;
    background: purple;
    text-shadow: 12px 22px 50px cyan, -23px 28px 50px lime, 17px 24px 40px magenta, 12px -29px 16px lime, -10px -11px 21px pink, -6px 0px 17px #ff0080, 4px -10px 6px purple, 4px 18px 6px red, -14px -25px 16px lime, -26px 30px 50px lime;
  }

  55.1% {
    transform: scale(1.7) rotate(186.6deg) skew(-40.3deg, -65.5deg) translate(-48.4px, 20.9px);
    filter: hue-rotate(181.4deg) blur(2.8px) saturate(252%);
    opacity: 0.92;
    background: lime;
    text-shadow: -11px 27px 18px orange, -21px -22px 21px red, 27px 16px 31px yellow, 20px 24px 24px lime, -24px -6px 8px pink, -25px -6px 23px magenta, 5px 3px 8px blue, -9px -9px 50px magenta, 12px -15px 10px pink, -3px -14px 24px #ff0080;
  }

  55.2% {
    transform: scale(1.55) rotate(491.7deg) skew(-7.7deg, 49.3deg) translate(-66.8px, 24.8px);
    filter: hue-rotate(29.4deg) blur(5.7px) saturate(167%);
    opacity: 0.81;
    background: cyan;
    text-shadow: 18px 9px 29px red, -13px 18px 13px lime, 4px 3px 31px magenta, -7px 1px 23px magenta, 18px 22px 44px #ff0080, 23px 24px 22px orange, -26px -17px 33px red, 4px 26px 23px purple, 3px 5px 29px pink, -17px -2px 29px purple;
  }

  55.3% {
    transform: scale(1.03) rotate(-495.5deg) skew(-21.8deg, -27.5deg) translate(23.8px, -25.8px);
    filter: hue-rotate(345.3deg) blur(6.6px) saturate(289%);
    opacity: 0.5;
    background: orange;
    text-shadow: -6px -30px 12px orange, -29px 3px 12px purple, -12px 14px 12px #ff0080, 13px 22px 32px magenta, 6px -11px 35px red, 17px 13px 31px #ff0080, 12px 26px 38px magenta, 17px -19px 13px orange, 3px -11px 5px red, -26px 21px 37px red;
  }

  55.4% {
    transform: scale(0.99) rotate(-414.9deg) skew(64.7deg, -44.9deg) translate(-55.7px, -7.2px);
    filter: hue-rotate(220.2deg) blur(8.7px) saturate(202%);
    opacity: 0.85;
    background: blue;
    text-shadow: 11px -13px 12px red, -12px -3px 13px lime, 21px 15px 42px pink, -23px 30px 39px yellow, -30px 28px 7px blue, 23px 1px 30px purple, 21px 7px 14px blue, 27px 18px 8px red, -28px 15px 14px blue, 13px 21px 22px blue;
  }

  55.5% {
    transform: scale(1.52) rotate(661.3deg) skew(-3.3deg, -38.9deg) translate(31.7px, 91.1px);
    filter: hue-rotate(112.2deg) blur(1.3px) saturate(94%);
    opacity: 0.43;
    background: yellow;
    text-shadow: -8px 9px 39px #ff0080, 21px -18px 25px purple, 3px 23px 41px lime, 12px -13px 18px red, 11px -25px 39px lime, 22px -15px 30px pink, 25px -21px 22px cyan, 16px -27px 16px orange, 10px -19px 31px magenta, 0px 20px 18px cyan;
  }

  55.6% {
    transform: scale(1.92) rotate(352.8deg) skew(22.5deg, -7.7deg) translate(-67.2px, 47.6px);
    filter: hue-rotate(98.6deg) blur(7.0px) saturate(280%);
    opacity: 1.0;
    background: yellow;
    text-shadow: -11px 7px 43px orange, 23px -4px 28px orange, -10px -26px 27px yellow, -4px 15px 50px purple, 21px -15px 37px red, -22px 5px 49px orange, -22px -12px 10px pink, 10px -4px 10px red, 16px -6px 49px blue, 4px 26px 39px pink;
  }

  55.7% {
    transform: scale(1.69) rotate(0.0deg) skew(3.2deg, 64.8deg) translate(-85.5px, 88.8px);
    filter: hue-rotate(126.5deg) blur(2.3px) saturate(190%);
    opacity: 0.69;
    background: cyan;
    text-shadow: 1px 7px 18px blue, 20px 2px 36px yellow, -30px -14px 49px yellow, -11px 15px 19px red, -23px -24px 11px lime, 30px -7px 21px blue, 2px -9px 20px pink, -21px -4px 10px blue, 24px 18px 13px pink, -23px -27px 25px lime;
  }

  55.8% {
    transform: scale(1.51) rotate(33.8deg) skew(-77.8deg, 13.8deg) translate(37.3px, -60.9px);
    filter: hue-rotate(359.8deg) blur(1.2px) saturate(275%);
    opacity: 0.56;
    background: purple;
    text-shadow: -22px -15px 16px pink, -11px 11px 40px lime, 5px 8px 11px blue, -14px 28px 11px orange, -10px -21px 39px yellow, 3px -13px 31px red, 8px 3px 45px lime, 15px 19px 9px red, 29px -29px 14px pink, -1px 0px 11px #ff0080;
  }

  55.9% {
    transform: scale(1.22) rotate(-655.3deg) skew(5.5deg, 15.6deg) translate(0.0px, 84.6px);
    filter: hue-rotate(38.8deg) blur(4.3px) saturate(213%);
    opacity: 0.8;
    background: cyan;
    text-shadow: 21px 6px 36px blue, -27px -20px 44px blue, 12px 22px 39px lime, 22px 8px 32px red, -19px 12px 11px pink, -8px 26px 25px yellow, -12px -18px 26px lime, 1px -16px 27px purple, -20px 5px 35px pink, 2px -18px 46px pink;
  }

  56.0% {
    transform: scale(1.06) rotate(-381.1deg) skew(-36.5deg, -22.4deg) translate(82.3px, -61.4px);
    filter: hue-rotate(186.0deg) blur(4.5px) saturate(136%);
    opacity: 1.0;
    background: pink;
    text-shadow: -24px -10px 5px pink, 30px 4px 22px purple, -24px 12px 17px purple, -28px 26px 26px lime, -30px 13px 38px red, -27px -5px 47px blue, -16px -30px 28px purple, 18px -9px 23px magenta, 19px 7px 36px magenta, 5px 1px 9px pink;
  }

  56.1% {
    transform: scale(0.64) rotate(-554.0deg) skew(44.3deg, -48.3deg) translate(82.6px, -51.6px);
    filter: hue-rotate(252.2deg) blur(2.8px) saturate(110%);
    opacity: 0.92;
    background: magenta;
    text-shadow: 18px 3px 34px cyan, 27px 27px 41px orange, -20px -24px 5px purple, -16px -3px 7px cyan, 29px -9px 15px red, -30px 18px 10px yellow, 28px 3px 31px red, 16px -29px 8px cyan, -4px -27px 43px cyan, -28px 22px 35px yellow;
  }

  56.2% {
    transform: scale(1.75) rotate(638.1deg) skew(44.9deg, -69.4deg) translate(83.8px, -39.4px);
    filter: hue-rotate(308.6deg) blur(6.2px) saturate(290%);
    opacity: 0.58;
    background: red;
    text-shadow: -16px 6px 49px pink, 14px -30px 48px yellow, -16px -3px 50px lime, 30px 15px 22px red, -17px -19px 29px purple, 29px -17px 7px blue, 14px 17px 15px lime, -3px -29px 26px #ff0080, -16px 6px 13px cyan, 0px -6px 39px purple;
  }

  56.3% {
    transform: scale(1.48) rotate(290.8deg) skew(5.9deg, 64.0deg) translate(-19.2px, -63.9px);
    filter: hue-rotate(111.9deg) blur(8.5px) saturate(123%);
    opacity: 0.38;
    background: #ff0080;
    text-shadow: 23px -26px 21px #ff0080, 21px -24px 19px yellow, 7px -29px 19px red, -13px 1px 30px cyan, -29px -8px 41px red, 5px 23px 50px yellow, 6px -18px 43px red, -15px -3px 6px pink, 0px -10px 27px red, 10px -3px 6px cyan;
  }

  56.4% {
    transform: scale(0.54) rotate(139.7deg) skew(2.6deg, -41.0deg) translate(10.9px, -62.1px);
    filter: hue-rotate(204.1deg) blur(7.1px) saturate(117%);
    opacity: 0.61;
    background: #ff0080;
    text-shadow: -6px 22px 27px lime, 30px 23px 35px pink, 22px 27px 43px yellow, -26px -13px 46px cyan, -29px -1px 40px lime, -4px -23px 32px lime, -23px -19px 40px red, 16px 26px 35px pink, -27px -7px 34px #ff0080, 20px -11px 31px blue;
  }

  56.5% {
    transform: scale(0.91) rotate(-449.7deg) skew(-3.9deg, -80.0deg) translate(-36.8px, -71.4px);
    filter: hue-rotate(89.0deg) blur(7.8px) saturate(117%);
    opacity: 0.51;
    background: cyan;
    text-shadow: -26px 19px 42px orange, 9px 13px 28px pink, 6px -7px 48px #ff0080, -23px -7px 18px blue, 0px -8px 8px lime, 26px 1px 26px #ff0080, -8px -27px 39px blue, 22px -6px 44px yellow, 1px -13px 32px magenta, -3px 28px 35px #ff0080;
  }

  56.6% {
    transform: scale(0.8) rotate(-556.2deg) skew(-81.2deg, -51.8deg) translate(88.6px, 16.8px);
    filter: hue-rotate(74.5deg) blur(0.9px) saturate(139%);
    opacity: 0.42;
    background: cyan;
    text-shadow: -5px -30px 7px #ff0080, -24px 17px 9px yellow, 20px -7px 5px red, -2px -18px 40px red, 25px -26px 25px red, -12px 7px 16px orange, -24px -21px 8px purple, -24px -2px 32px magenta, -1px -12px 25px blue, 12px 6px 15px yellow;
  }

  56.7% {
    transform: scale(1.59) rotate(474.3deg) skew(62.7deg, -43.3deg) translate(-23.3px, -28.4px);
    filter: hue-rotate(89.1deg) blur(9.6px) saturate(277%);
    opacity: 0.37;
    background: orange;
    text-shadow: 19px 15px 24px blue, -18px -8px 18px lime, 27px 0px 33px orange, -9px -8px 39px purple, 2px -9px 35px yellow, -12px 25px 18px yellow, -9px 8px 12px yellow, 13px 13px 36px blue, 29px -21px 35px orange, -29px -23px 28px yellow;
  }

  56.8% {
    transform: scale(1.86) rotate(361.4deg) skew(64.3deg, 65.0deg) translate(6.0px, 83.5px);
    filter: hue-rotate(141.5deg) blur(8.3px) saturate(258%);
    opacity: 0.44;
    background: blue;
    text-shadow: 20px 6px 33px #ff0080, -25px 26px 32px blue, -3px 0px 22px blue, -17px 13px 31px yellow, 24px 1px 27px yellow, 14px -15px 41px #ff0080, -8px 14px 24px #ff0080, -21px 6px 42px lime, -25px 8px 33px blue, -7px -14px 15px lime;
  }

  56.9% {
    transform: scale(1.76) rotate(464.2deg) skew(-56.7deg, -8.9deg) translate(21.5px, 73.7px);
    filter: hue-rotate(175.2deg) blur(9.0px) saturate(186%);
    opacity: 0.79;
    background: purple;
    text-shadow: 5px -16px 45px orange, -6px 22px 18px pink, -18px -30px 47px yellow, 8px -23px 50px magenta, -29px -2px 42px purple, 1px 3px 49px #ff0080, -5px 7px 21px pink, -25px -14px 28px pink, -2px 29px 38px magenta, -9px -30px 17px cyan;
  }

  57.0% {
    transform: scale(1.03) rotate(367.1deg) skew(77.2deg, -55.6deg) translate(82.6px, -14.2px);
    filter: hue-rotate(3.3deg) blur(1.1px) saturate(265%);
    opacity: 0.49;
    background: lime;
    text-shadow: 23px 16px 36px pink, -28px 6px 7px magenta, 4px -24px 9px magenta, 25px -12px 42px purple, -9px 23px 30px magenta, 22px 6px 15px red, -1px -6px 13px pink, -1px 27px 31px yellow, -27px 15px 48px pink, 30px -8px 33px red;
  }

  57.1% {
    transform: scale(1.85) rotate(-694.3deg) skew(0.1deg, -88.2deg) translate(80.0px, 24.2px);
    filter: hue-rotate(162.8deg) blur(5.1px) saturate(60%);
    opacity: 0.42;
    background: purple;
    text-shadow: -26px -11px 10px #ff0080, -17px -25px 29px blue, -4px -19px 34px magenta, -3px 2px 39px red, -29px -23px 41px purple, -8px 28px 32px cyan, 7px 2px 10px blue, 2px 7px 38px #ff0080, 21px -2px 7px orange, 25px 8px 23px #ff0080;
  }

  57.2% {
    transform: scale(1.49) rotate(451.9deg) skew(-54.1deg, -26.5deg) translate(-18.0px, 85.6px);
    filter: hue-rotate(161.7deg) blur(1.1px) saturate(218%);
    opacity: 0.61;
    background: magenta;
    text-shadow: 27px 11px 22px pink, -12px 19px 48px blue, 14px -25px 19px purple, 17px -11px 45px blue, 2px -19px 26px cyan, 2px -19px 24px purple, 4px 10px 48px orange, -5px 13px 15px purple, 22px 26px 28px blue, 5px -17px 16px yellow;
  }

  57.3% {
    transform: scale(1.9) rotate(161.8deg) skew(-78.0deg, -13.3deg) translate(-11.7px, 40.5px);
    filter: hue-rotate(266.8deg) blur(6.2px) saturate(69%);
    opacity: 0.8;
    background: blue;
    text-shadow: -11px 17px 11px orange, 0px 25px 22px lime, -27px -2px 10px purple, -3px -3px 39px cyan, -9px -27px 34px purple, 3px -12px 47px lime, -18px 5px 29px blue, 9px 17px 32px yellow, -29px 19px 17px pink, -27px 13px 13px red;
  }

  57.4% {
    transform: scale(1.73) rotate(411.8deg) skew(41.1deg, -60.2deg) translate(34.3px, 65.9px);
    filter: hue-rotate(334.5deg) blur(8.5px) saturate(74%);
    opacity: 0.51;
    background: blue;
    text-shadow: 18px 10px 37px orange, -21px -17px 48px #ff0080, -21px 2px 34px pink, -15px -4px 34px orange, 1px 13px 49px pink, 12px 1px 12px yellow, 12px -15px 22px cyan, 25px 17px 48px yellow, 20px -29px 23px blue, -10px 11px 37px cyan;
  }

  57.5% {
    transform: scale(0.79) rotate(-257.5deg) skew(46.8deg, -56.0deg) translate(72.7px, -80.8px);
    filter: hue-rotate(12.5deg) blur(8.4px) saturate(295%);
    opacity: 0.9;
    background: cyan;
    text-shadow: -14px -28px 43px cyan, -1px 4px 7px yellow, 15px 22px 13px magenta, -13px -17px 44px #ff0080, -24px -7px 33px blue, 5px 26px 45px #ff0080, 21px -30px 11px purple, -26px 4px 47px blue, 30px 12px 5px cyan, 21px 6px 46px red;
  }

  57.6% {
    transform: scale(1.99) rotate(-716.9deg) skew(-12.0deg, -23.4deg) translate(-2.4px, 63.1px);
    filter: hue-rotate(189.8deg) blur(5.1px) saturate(283%);
    opacity: 0.58;
    background: blue;
    text-shadow: -29px -10px 50px #ff0080, -28px -25px 13px lime, 6px 23px 16px pink, -27px 1px 23px yellow, 21px -16px 37px orange, -5px 11px 38px yellow, 8px 10px 14px purple, 2px 18px 50px #ff0080, 10px 6px 41px blue, 5px -22px 9px yellow;
  }

  57.7% {
    transform: scale(1.11) rotate(376.2deg) skew(-89.9deg, -2.3deg) translate(88.6px, 8.2px);
    filter: hue-rotate(356.1deg) blur(7.1px) saturate(274%);
    opacity: 0.79;
    background: cyan;
    text-shadow: -30px 1px 47px orange, -26px 0px 26px blue, 30px 28px 22px magenta, 4px 29px 49px orange, 7px -20px 31px lime, -8px 12px 26px cyan, -3px -14px 6px #ff0080, -30px 7px 24px orange, -21px -12px 47px purple, -24px -30px 12px cyan;
  }

  57.8% {
    transform: scale(1.71) rotate(346.0deg) skew(50.5deg, -53.2deg) translate(47.7px, 55.2px);
    filter: hue-rotate(345.1deg) blur(9.9px) saturate(272%);
    opacity: 0.41;
    background: blue;
    text-shadow: 1px 22px 25px red, 27px -25px 28px magenta, 25px 0px 7px #ff0080, 25px -4px 30px red, 20px 11px 14px pink, -24px 3px 31px lime, 28px -13px 45px lime, -1px 21px 32px purple, 19px 20px 35px magenta, -15px 27px 23px blue;
  }

  57.9% {
    transform: scale(1.81) rotate(480.8deg) skew(33.7deg, -11.8deg) translate(-22.9px, 78.0px);
    filter: hue-rotate(276.9deg) blur(6.7px) saturate(105%);
    opacity: 0.74;
    background: purple;
    text-shadow: 0px -23px 31px yellow, -12px 28px 41px orange, -12px 15px 24px yellow, -27px 30px 21px purple, -3px 0px 41px #ff0080, -5px -8px 33px yellow, -25px 7px 45px orange, 12px 23px 20px lime, -24px 22px 23px lime, 21px 25px 26px orange;
  }

  58.0% {
    transform: scale(1.71) rotate(643.2deg) skew(-21.5deg, -0.7deg) translate(-42.0px, 20.2px);
    filter: hue-rotate(45.6deg) blur(3.4px) saturate(143%);
    opacity: 0.5;
    background: pink;
    text-shadow: 1px 7px 13px lime, -14px 22px 36px pink, 28px 15px 20px pink, -17px 8px 38px magenta, 11px -29px 10px magenta, -12px 14px 32px lime, -17px -23px 44px magenta, 28px -18px 5px orange, 0px 15px 43px orange, 28px -22px 35px blue;
  }

  58.1% {
    transform: scale(1.14) rotate(394.8deg) skew(-61.1deg, -45.4deg) translate(91.4px, -89.0px);
    filter: hue-rotate(173.0deg) blur(3.6px) saturate(151%);
    opacity: 0.36;
    background: yellow;
    text-shadow: 4px -13px 43px pink, 4px 0px 38px lime, 8px 23px 27px orange, -28px 18px 19px pink, 15px 28px 28px red, -2px -4px 38px lime, -8px -26px 33px blue, 25px -23px 38px red, -3px -12px 33px cyan, 13px -26px 37px purple;
  }

  58.2% {
    transform: scale(0.58) rotate(218.5deg) skew(-3.4deg, -20.3deg) translate(-93.3px, -17.0px);
    filter: hue-rotate(250.1deg) blur(6.3px) saturate(260%);
    opacity: 0.74;
    background: purple;
    text-shadow: 0px 22px 35px purple, -27px -16px 49px pink, -25px -16px 11px pink, -13px -11px 19px yellow, -23px -9px 17px cyan, -8px -2px 10px red, -29px 10px 41px red, 16px 15px 29px red, 8px -6px 30px orange, 13px -21px 48px blue;
  }

  58.3% {
    transform: scale(1.23) rotate(-565.2deg) skew(-1.9deg, 64.0deg) translate(95.4px, 52.6px);
    filter: hue-rotate(52.1deg) blur(6.3px) saturate(279%);
    opacity: 0.75;
    background: lime;
    text-shadow: 19px 9px 45px red, -5px -26px 24px cyan, 28px -7px 50px orange, 13px -10px 20px #ff0080, -8px -21px 12px lime, 21px -19px 16px lime, 10px -13px 13px cyan, -4px 15px 6px magenta, 20px 5px 49px cyan, -21px -20px 42px lime;
  }

  58.4% {
    transform: scale(1.24) rotate(385.6deg) skew(-83.8deg, -74.1deg) translate(-97.7px, 52.2px);
    filter: hue-rotate(61.7deg) blur(9.0px) saturate(157%);
    opacity: 0.31;
    background: magenta;
    text-shadow: -18px 15px 23px yellow, -23px -2px 12px magenta, 9px -3px 26px red, 9px -24px 34px magenta, 2px 26px 7px cyan, -29px -7px 19px purple, 7px 6px 48px lime, 28px -29px 11px blue, 5px 30px 25px cyan, -4px 17px 35px cyan;
  }

  58.5% {
    transform: scale(0.97) rotate(-72.8deg) skew(89.9deg, 8.5deg) translate(-54.4px, -14.9px);
    filter: hue-rotate(197.5deg) blur(8.6px) saturate(245%);
    opacity: 0.37;
    background: magenta;
    text-shadow: 28px -12px 21px pink, -8px -5px 6px magenta, 12px -4px 46px blue, -14px -22px 9px #ff0080, 12px -26px 28px purple, 0px 2px 29px yellow, 9px -17px 15px orange, 10px -18px 48px red, 23px 1px 28px magenta, 28px 11px 42px yellow;
  }

  58.6% {
    transform: scale(1.0) rotate(-217.9deg) skew(-53.3deg, -68.9deg) translate(3.1px, -63.6px);
    filter: hue-rotate(145.4deg) blur(10.0px) saturate(60%);
    opacity: 0.74;
    background: lime;
    text-shadow: 13px -26px 46px pink, -23px 22px 34px #ff0080, 5px 19px 22px orange, 22px 29px 33px #ff0080, 29px -13px 26px cyan, 30px -23px 36px pink, 10px 17px 44px lime, -17px -3px 44px pink, -20px -30px 7px red, -27px -12px 45px blue;
  }

  58.7% {
    transform: scale(1.3) rotate(-610.9deg) skew(77.1deg, 8.1deg) translate(68.7px, -2.9px);
    filter: hue-rotate(338.0deg) blur(2.0px) saturate(93%);
    opacity: 0.67;
    background: magenta;
    text-shadow: -23px 6px 44px lime, 2px 20px 9px orange, 11px -6px 16px lime, 13px -26px 18px blue, -9px 11px 32px magenta, 23px -30px 19px lime, 24px 4px 37px purple, 1px 26px 35px pink, -26px 27px 20px yellow, -9px -27px 43px yellow;
  }

  58.8% {
    transform: scale(0.97) rotate(-697.6deg) skew(-7.4deg, -18.5deg) translate(54.4px, 97.0px);
    filter: hue-rotate(193.9deg) blur(7.0px) saturate(173%);
    opacity: 0.33;
    background: cyan;
    text-shadow: 28px 8px 30px magenta, -17px -13px 13px blue, 13px -16px 19px magenta, -24px 15px 13px lime, 8px 14px 39px cyan, -26px 29px 36px blue, 21px 11px 26px orange, -13px -23px 35px orange, -11px -2px 26px blue, -16px -12px 42px magenta;
  }

  58.9% {
    transform: scale(0.63) rotate(581.7deg) skew(75.5deg, 73.2deg) translate(88.7px, -63.9px);
    filter: hue-rotate(30.9deg) blur(1.0px) saturate(155%);
    opacity: 0.56;
    background: purple;
    text-shadow: 11px -9px 36px cyan, -2px 14px 49px blue, -26px -3px 12px cyan, -16px 4px 14px lime, -13px 2px 47px magenta, -26px 26px 10px pink, 2px 10px 7px orange, 2px -20px 39px orange, -4px 19px 38px blue, -8px -26px 8px red;
  }

  59.0% {
    transform: scale(1.7) rotate(-6.9deg) skew(79.3deg, -79.7deg) translate(20.6px, -31.9px);
    filter: hue-rotate(277.9deg) blur(9.5px) saturate(58%);
    opacity: 0.34;
    background: purple;
    text-shadow: -19px -19px 21px orange, 11px -24px 41px orange, 28px 23px 21px lime, -8px -11px 46px purple, -7px -30px 29px pink, -12px -12px 46px orange, 3px 2px 42px purple, 12px -5px 49px blue, 1px 22px 30px #ff0080, 10px -22px 15px #ff0080;
  }

  59.1% {
    transform: scale(0.86) rotate(138.0deg) skew(-38.4deg, 81.6deg) translate(-9.8px, 74.4px);
    filter: hue-rotate(214.9deg) blur(8.4px) saturate(130%);
    opacity: 0.64;
    background: magenta;
    text-shadow: 28px -27px 39px red, 16px -20px 10px magenta, 30px -25px 43px orange, 25px 20px 7px magenta, -24px 17px 27px #ff0080, 1px -23px 23px #ff0080, -27px -24px 39px lime, 4px 24px 33px blue, -8px -27px 6px purple, -3px 13px 30px purple;
  }

  59.2% {
    transform: scale(1.59) rotate(-681.7deg) skew(63.0deg, -25.3deg) translate(81.2px, 63.0px);
    filter: hue-rotate(39.0deg) blur(6.7px) saturate(59%);
    opacity: 0.34;
    background: magenta;
    text-shadow: -14px -16px 30px orange, -6px -29px 37px red, -8px -27px 25px magenta, 6px 18px 28px lime, -19px -24px 31px lime, 17px 19px 9px blue, 20px -13px 30px yellow, -27px 24px 39px blue, 2px 10px 46px cyan, -20px 27px 23px yellow;
  }

  59.3% {
    transform: scale(1.95) rotate(717.7deg) skew(-18.7deg, 53.0deg) translate(70.9px, -63.7px);
    filter: hue-rotate(63.2deg) blur(3.1px) saturate(156%);
    opacity: 0.84;
    background: orange;
    text-shadow: 26px -12px 44px blue, -14px 12px 7px lime, 3px 24px 6px blue, 28px 18px 20px pink, 25px -13px 20px red, -19px -28px 10px yellow, 2px -9px 33px blue, 14px -5px 43px purple, 28px 5px 49px yellow, -22px 19px 18px lime;
  }

  59.4% {
    transform: scale(0.62) rotate(322.1deg) skew(17.8deg, 40.5deg) translate(-51.7px, 46.6px);
    filter: hue-rotate(218.7deg) blur(9.7px) saturate(116%);
    opacity: 0.37;
    background: purple;
    text-shadow: 28px 11px 45px magenta, -13px 12px 50px yellow, 18px -17px 25px #ff0080, -3px -4px 15px #ff0080, 28px 7px 31px magenta, -29px -4px 22px blue, 9px -23px 40px magenta, -12px 21px 18px lime, 28px -1px 21px cyan, -30px -25px 34px purple;
  }

  59.5% {
    transform: scale(1.73) rotate(522.3deg) skew(-71.6deg, -80.9deg) translate(-91.6px, -16.8px);
    filter: hue-rotate(324.8deg) blur(7.4px) saturate(99%);
    opacity: 0.71;
    background: cyan;
    text-shadow: -16px 21px 8px blue, 22px -21px 26px #ff0080, 6px 12px 47px lime, 16px 23px 24px cyan, -9px 30px 34px purple, -9px 11px 20px purple, -10px 9px 30px cyan, -12px -2px 15px #ff0080, 7px -14px 19px #ff0080, 6px -25px 43px pink;
  }

  59.6% {
    transform: scale(0.74) rotate(634.4deg) skew(83.3deg, -5.8deg) translate(-45.9px, 6.1px);
    filter: hue-rotate(192.6deg) blur(9.8px) saturate(172%);
    opacity: 0.77;
    background: pink;
    text-shadow: 29px 29px 40px pink, -22px 2px 26px magenta, -2px 25px 33px purple, 25px 6px 19px red, 16px 27px 26px orange, 28px -28px 19px #ff0080, -6px -30px 22px magenta, 4px 10px 36px red, 28px 23px 25px lime, -27px -1px 42px red;
  }

  59.7% {
    transform: scale(0.9) rotate(558.3deg) skew(-75.1deg, -5.3deg) translate(-58.2px, -14.0px);
    filter: hue-rotate(277.7deg) blur(1.2px) saturate(252%);
    opacity: 0.92;
    background: magenta;
    text-shadow: -2px -19px 15px orange, -18px 3px 20px purple, -24px 26px 12px orange, 29px 15px 27px lime, 5px 30px 11px lime, 8px 27px 27px magenta, 18px 24px 22px yellow, 17px 15px 23px orange, 9px 26px 22px #ff0080, -4px -12px 35px #ff0080;
  }

  59.8% {
    transform: scale(1.97) rotate(-170.8deg) skew(-82.5deg, 76.7deg) translate(-66.8px, 74.7px);
    filter: hue-rotate(133.1deg) blur(0.5px) saturate(96%);
    opacity: 0.96;
    background: lime;
    text-shadow: -9px -27px 22px orange, 30px -11px 37px magenta, 11px -13px 50px orange, 27px 4px 6px orange, -3px -8px 35px orange, -14px -21px 30px pink, -19px 13px 42px yellow, 15px -8px 20px cyan, 23px 10px 41px cyan, -22px 6px 42px orange;
  }

  59.9% {
    transform: scale(1.26) rotate(36.0deg) skew(55.4deg, 1.3deg) translate(-55.7px, -87.3px);
    filter: hue-rotate(294.8deg) blur(5.1px) saturate(176%);
    opacity: 0.72;
    background: blue;
    text-shadow: 1px -21px 14px magenta, -10px -9px 26px magenta, 5px 6px 23px yellow, -1px -10px 7px #ff0080, -11px 2px 46px blue, -21px -6px 28px cyan, -27px 21px 42px blue, 8px -21px 20px magenta, -26px -15px 46px yellow, 25px -3px 26px red;
  }

  60.0% {
    transform: scale(1.23) rotate(-140.4deg) skew(-49.9deg, -31.7deg) translate(96.9px, 26.9px);
    filter: hue-rotate(359.6deg) blur(2.8px) saturate(126%);
    opacity: 0.99;
    background: lime;
    text-shadow: 25px -1px 12px purple, -24px 4px 29px #ff0080, -30px 10px 13px lime, 0px -8px 28px lime, 0px -9px 20px magenta, -26px 25px 37px pink, 8px -13px 38px orange, -17px 8px 20px #ff0080, 14px -30px 22px red, -10px -17px 6px red;
  }

  60.1% {
    transform: scale(1.15) rotate(8.7deg) skew(12.9deg, 78.6deg) translate(-65.8px, -78.6px);
    filter: hue-rotate(146.4deg) blur(1.4px) saturate(65%);
    opacity: 0.83;
    background: #ff0080;
    text-shadow: -12px 8px 46px blue, -17px 4px 27px yellow, 20px -20px 30px purple, 24px 24px 9px lime, -19px 14px 20px pink, -22px 24px 18px cyan, 16px -8px 47px purple, -15px 12px 19px #ff0080, -9px -10px 30px pink, 3px -23px 11px purple;
  }

  60.2% {
    transform: scale(1.76) rotate(-475.2deg) skew(-42.1deg, -39.0deg) translate(42.0px, 20.7px);
    filter: hue-rotate(18.8deg) blur(3.6px) saturate(102%);
    opacity: 0.36;
    background: magenta;
    text-shadow: -22px -25px 9px cyan, 18px 6px 35px #ff0080, -7px -20px 12px red, 7px 6px 43px yellow, -1px 19px 26px red, -23px 15px 26px orange, 8px 9px 36px purple, 21px -2px 37px orange, -26px -16px 9px red, 18px -2px 46px yellow;
  }

  60.3% {
    transform: scale(1.09) rotate(182.4deg) skew(-9.1deg, -60.6deg) translate(-33.6px, -66.3px);
    filter: hue-rotate(228.6deg) blur(0.0px) saturate(76%);
    opacity: 0.89;
    background: magenta;
    text-shadow: -17px 8px 25px magenta, -23px -3px 17px cyan, 2px -9px 33px orange, 20px -22px 20px purple, 20px 22px 45px red, -19px 29px 8px blue, -12px -10px 38px lime, -25px 15px 46px orange, -15px -14px 43px yellow, 6px 18px 35px purple;
  }

  60.4% {
    transform: scale(1.56) rotate(151.2deg) skew(8.7deg, 31.8deg) translate(56.6px, 77.7px);
    filter: hue-rotate(202.1deg) blur(3.3px) saturate(94%);
    opacity: 0.98;
    background: blue;
    text-shadow: 9px -2px 18px magenta, -24px -15px 12px red, 10px -21px 50px yellow, 8px -26px 50px pink, 14px -13px 41px yellow, 0px -29px 24px yellow, -11px 9px 18px lime, 13px -16px 41px red, 4px -15px 29px #ff0080, -4px -30px 34px cyan;
  }

  60.5% {
    transform: scale(1.51) rotate(-682.9deg) skew(-17.4deg, 48.3deg) translate(61.3px, -31.5px);
    filter: hue-rotate(118.8deg) blur(9.0px) saturate(243%);
    opacity: 0.5;
    background: cyan;
    text-shadow: 25px 9px 32px lime, 7px -28px 43px blue, 21px -16px 13px cyan, -25px 21px 12px cyan, -19px -30px 48px yellow, -15px 14px 29px yellow, 11px 2px 16px orange, -27px 2px 8px lime, -26px -27px 16px lime, 28px 30px 49px pink;
  }

  60.6% {
    transform: scale(0.86) rotate(-601.4deg) skew(34.7deg, -57.9deg) translate(16.8px, 52.6px);
    filter: hue-rotate(143.4deg) blur(9.3px) saturate(113%);
    opacity: 0.97;
    background: red;
    text-shadow: -24px 23px 31px orange, -10px -28px 27px lime, 24px -19px 13px pink, 11px 5px 27px pink, -30px -28px 9px cyan, -19px 29px 25px yellow, -22px 0px 17px cyan, 0px 5px 25px #ff0080, -21px 28px 38px red, -20px 17px 50px #ff0080;
  }

  60.7% {
    transform: scale(0.66) rotate(89.1deg) skew(76.0deg, 51.6deg) translate(-87.5px, -36.4px);
    filter: hue-rotate(42.9deg) blur(0.6px) saturate(56%);
    opacity: 0.5;
    background: blue;
    text-shadow: -10px 26px 43px pink, 10px -4px 6px lime, -15px -5px 16px red, 18px 6px 18px magenta, -3px 13px 16px cyan, -19px -23px 15px red, -11px -10px 29px #ff0080, 26px 24px 7px blue, 8px 30px 6px purple, 13px -14px 17px magenta;
  }

  60.8% {
    transform: scale(1.85) rotate(-166.8deg) skew(45.2deg, -75.3deg) translate(-10.2px, -27.8px);
    filter: hue-rotate(314.4deg) blur(8.1px) saturate(183%);
    opacity: 0.89;
    background: #ff0080;
    text-shadow: 6px -17px 12px purple, -10px -14px 8px red, 11px -13px 26px red, 14px 12px 38px cyan, 30px 18px 6px #ff0080, -25px 1px 16px yellow, 29px 22px 11px lime, -10px -10px 20px red, -3px -29px 15px magenta, 23px -21px 10px cyan;
  }

  60.9% {
    transform: scale(0.76) rotate(268.6deg) skew(-76.3deg, 80.5deg) translate(71.0px, -19.2px);
    filter: hue-rotate(354.0deg) blur(3.3px) saturate(242%);
    opacity: 0.37;
    background: pink;
    text-shadow: 18px 20px 30px pink, 23px -8px 45px cyan, 30px 16px 40px lime, 6px -8px 24px cyan, -14px -19px 29px cyan, 25px -9px 46px red, -18px -4px 23px orange, -24px 10px 31px red, 1px 23px 35px blue, 23px -18px 39px pink;
  }

  61.0% {
    transform: scale(0.7) rotate(-315.0deg) skew(-81.2deg, -37.0deg) translate(-6.5px, 92.7px);
    filter: hue-rotate(325.0deg) blur(4.9px) saturate(244%);
    opacity: 0.71;
    background: yellow;
    text-shadow: -16px -24px 35px yellow, 8px -27px 17px purple, 23px -12px 43px yellow, 4px 13px 12px pink, -4px 27px 22px orange, -24px 22px 14px #ff0080, -2px 11px 28px blue, -19px 18px 27px blue, -13px -10px 34px cyan, -1px -18px 5px blue;
  }

  61.1% {
    transform: scale(0.82) rotate(42.5deg) skew(9.6deg, -49.2deg) translate(55.5px, -54.4px);
    filter: hue-rotate(280.1deg) blur(5.7px) saturate(238%);
    opacity: 0.77;
    background: magenta;
    text-shadow: 11px 4px 22px cyan, 29px 19px 50px blue, 18px -10px 50px pink, -12px 17px 47px yellow, 17px -14px 21px red, -5px 8px 43px orange, 10px -29px 29px orange, -6px 14px 24px #ff0080, 27px 14px 34px pink, -21px -1px 27px blue;
  }

  61.2% {
    transform: scale(1.64) rotate(-46.0deg) skew(7.6deg, -0.0deg) translate(-48.3px, 35.2px);
    filter: hue-rotate(352.7deg) blur(8.7px) saturate(268%);
    opacity: 0.92;
    background: red;
    text-shadow: -10px -3px 13px orange, 14px 5px 18px red, 4px -10px 39px magenta, -5px 4px 27px lime, -24px 12px 12px cyan, 5px -23px 39px pink, -26px -13px 33px cyan, -18px 10px 45px lime, -15px 19px 18px #ff0080, 3px -19px 35px orange;
  }

  61.3% {
    transform: scale(1.97) rotate(-234.6deg) skew(-78.3deg, -13.8deg) translate(82.2px, -46.7px);
    filter: hue-rotate(356.0deg) blur(8.8px) saturate(215%);
    opacity: 0.94;
    background: cyan;
    text-shadow: -26px 13px 42px red, -24px -23px 38px yellow, -14px 1px 28px purple, -18px -15px 44px blue, 6px 26px 7px blue, -13px -24px 31px red, 24px 8px 37px red, -21px 13px 26px pink, 6px -6px 13px blue, 17px -28px 19px purple;
  }

  61.4% {
    transform: scale(1.55) rotate(249.5deg) skew(83.8deg, 89.9deg) translate(61.3px, 19.7px);
    filter: hue-rotate(141.5deg) blur(4.6px) saturate(263%);
    opacity: 0.48;
    background: pink;
    text-shadow: 15px -16px 40px yellow, -13px 5px 10px magenta, -16px -21px 11px yellow, 19px 28px 31px pink, -30px 28px 31px cyan, 11px 27px 41px blue, 3px -13px 9px cyan, 6px 22px 19px red, -14px -13px 35px #ff0080, 27px -7px 17px purple;
  }

  61.5% {
    transform: scale(0.59) rotate(9.0deg) skew(-38.7deg, -84.8deg) translate(-29.1px, -96.7px);
    filter: hue-rotate(337.1deg) blur(8.0px) saturate(187%);
    opacity: 0.78;
    background: yellow;
    text-shadow: -23px 6px 40px cyan, -4px 20px 23px red, 7px -2px 43px cyan, 19px -17px 18px pink, 0px 9px 48px purple, 4px 10px 10px purple, 23px -22px 21px red, -19px -12px 45px cyan, 14px -29px 43px purple, -4px 15px 18px blue;
  }

  61.6% {
    transform: scale(1.07) rotate(-61.8deg) skew(22.4deg, -89.2deg) translate(38.2px, 59.2px);
    filter: hue-rotate(60.9deg) blur(7.2px) saturate(105%);
    opacity: 0.47;
    background: cyan;
    text-shadow: -1px 8px 29px lime, 17px 18px 39px orange, -13px -1px 13px #ff0080, 11px 24px 42px lime, -9px 10px 47px lime, -20px 18px 24px lime, -26px -17px 36px lime, -2px -17px 43px blue, 5px -27px 14px pink, -18px -3px 25px blue;
  }

  61.7% {
    transform: scale(1.37) rotate(-692.3deg) skew(-83.8deg, -19.5deg) translate(-82.6px, 80.6px);
    filter: hue-rotate(47.6deg) blur(9.2px) saturate(138%);
    opacity: 0.89;
    background: #ff0080;
    text-shadow: 9px 13px 5px orange, -26px -25px 6px #ff0080, 12px 23px 28px yellow, -6px -20px 22px blue, -8px -21px 42px lime, 2px -20px 30px cyan, 25px -28px 10px cyan, 12px 0px 23px blue, -10px -5px 41px purple, -18px -13px 28px cyan;
  }

  61.8% {
    transform: scale(0.85) rotate(-485.1deg) skew(-64.3deg, -73.4deg) translate(-57.0px, -22.1px);
    filter: hue-rotate(89.6deg) blur(4.0px) saturate(275%);
    opacity: 0.31;
    background: red;
    text-shadow: -26px -19px 31px yellow, -16px -25px 46px #ff0080, -23px -6px 26px blue, -20px -23px 12px cyan, -11px -18px 19px yellow, 17px -21px 41px yellow, -13px 3px 17px cyan, -11px 28px 9px magenta, 5px 21px 20px pink, -18px -3px 10px #ff0080;
  }

  61.9% {
    transform: scale(1.12) rotate(16.3deg) skew(49.6deg, -31.6deg) translate(56.9px, 49.1px);
    filter: hue-rotate(195.4deg) blur(5.4px) saturate(285%);
    opacity: 0.39;
    background: blue;
    text-shadow: -19px -29px 43px pink, 13px 29px 46px red, -26px 15px 28px purple, 16px -14px 21px pink, -9px 30px 16px yellow, 30px 13px 31px purple, -21px -23px 42px cyan, 8px -1px 29px #ff0080, 3px 3px 50px yellow, -12px 18px 33px blue;
  }

  62.0% {
    transform: scale(0.73) rotate(-230.0deg) skew(24.6deg, -40.7deg) translate(-39.3px, -26.2px);
    filter: hue-rotate(113.5deg) blur(2.9px) saturate(220%);
    opacity: 0.92;
    background: lime;
    text-shadow: 28px 18px 20px yellow, 16px 22px 20px #ff0080, -9px 29px 34px cyan, -22px -30px 15px cyan, -2px -22px 32px lime, -18px 23px 33px cyan, 23px -2px 11px yellow, -25px 16px 18px lime, -3px 18px 15px red, 17px -25px 32px pink;
  }

  62.1% {
    transform: scale(1.04) rotate(7.2deg) skew(78.5deg, -6.6deg) translate(-73.5px, 10.0px);
    filter: hue-rotate(318.4deg) blur(0.3px) saturate(188%);
    opacity: 0.49;
    background: orange;
    text-shadow: 11px -20px 50px red, -11px 30px 40px yellow, 14px 2px 36px orange, 25px 0px 40px cyan, -19px -13px 35px #ff0080, 29px 17px 17px #ff0080, -20px -13px 39px cyan, -30px 30px 23px cyan, -18px 25px 47px lime, 30px 13px 42px red;
  }

  62.2% {
    transform: scale(1.28) rotate(-569.7deg) skew(87.6deg, 4.0deg) translate(-8.0px, -82.6px);
    filter: hue-rotate(316.7deg) blur(5.2px) saturate(122%);
    opacity: 0.81;
    background: #ff0080;
    text-shadow: 28px 18px 21px cyan, 6px 17px 9px pink, -7px 7px 34px blue, 8px 18px 48px cyan, -11px 29px 9px magenta, 29px -13px 5px pink, 13px 20px 40px red, 30px -1px 22px blue, -11px 26px 47px red, 23px -28px 48px blue;
  }

  62.3% {
    transform: scale(1.83) rotate(-295.3deg) skew(2.7deg, 50.9deg) translate(5.7px, 37.9px);
    filter: hue-rotate(168.6deg) blur(3.3px) saturate(238%);
    opacity: 0.3;
    background: yellow;
    text-shadow: -21px -30px 34px magenta, 22px 10px 43px #ff0080, 0px -4px 22px yellow, 28px -12px 36px #ff0080, -9px 5px 42px yellow, -6px 19px 25px pink, -11px -22px 20px magenta, 3px 27px 23px cyan, 13px -29px 41px magenta, 15px -14px 7px purple;
  }

  62.4% {
    transform: scale(2.0) rotate(47.9deg) skew(35.1deg, -1.4deg) translate(44.9px, 62.3px);
    filter: hue-rotate(328.8deg) blur(6.8px) saturate(152%);
    opacity: 0.88;
    background: red;
    text-shadow: 7px -17px 9px magenta, -28px -28px 35px orange, -23px -11px 29px red, -10px 12px 30px #ff0080, 0px 5px 50px magenta, -27px 5px 17px blue, 6px -28px 41px magenta, 26px -9px 43px #ff0080, -27px -12px 50px magenta, 15px 10px 50px #ff0080;
  }

  62.5% {
    transform: scale(1.66) rotate(322.8deg) skew(49.9deg, 81.8deg) translate(-5.4px, 9.5px);
    filter: hue-rotate(200.9deg) blur(5.5px) saturate(117%);
    opacity: 0.55;
    background: cyan;
    text-shadow: -4px 5px 6px pink, -10px 15px 34px yellow, 13px 12px 17px magenta, 25px -6px 16px orange, -3px -12px 24px magenta, 16px 24px 42px red, 26px -8px 15px blue, -30px -9px 48px magenta, 17px 10px 13px magenta, -3px -20px 49px lime;
  }

  62.6% {
    transform: scale(0.55) rotate(-649.9deg) skew(-63.2deg, -40.9deg) translate(77.1px, 10.7px);
    filter: hue-rotate(138.1deg) blur(7.1px) saturate(78%);
    opacity: 0.35;
    background: orange;
    text-shadow: 7px 24px 36px orange, -26px -1px 49px lime, -25px -1px 20px red, -24px 17px 18px orange, -15px 0px 22px blue, 18px -21px 42px magenta, 16px 8px 49px #ff0080, 23px -14px 28px orange, -23px 30px 50px yellow, 28px -26px 47px yellow;
  }

  62.7% {
    transform: scale(1.77) rotate(-479.7deg) skew(-15.1deg, -40.1deg) translate(72.8px, -86.6px);
    filter: hue-rotate(351.2deg) blur(5.4px) saturate(189%);
    opacity: 0.49;
    background: cyan;
    text-shadow: -19px -22px 42px blue, 10px -1px 33px magenta, -15px -26px 14px pink, -9px 28px 30px #ff0080, 26px 7px 46px yellow, -4px 7px 48px cyan, -27px -8px 20px lime, -30px 4px 27px lime, 3px -24px 26px cyan, -12px -21px 24px red;
  }

  62.8% {
    transform: scale(0.82) rotate(-196.0deg) skew(-46.5deg, 73.5deg) translate(12.5px, 4.3px);
    filter: hue-rotate(6.7deg) blur(5.5px) saturate(126%);
    opacity: 0.93;
    background: lime;
    text-shadow: -7px -2px 46px pink, 18px 24px 16px #ff0080, 5px -11px 36px yellow, 4px -14px 37px yellow, 4px -1px 7px red, 18px -7px 15px #ff0080, 2px 8px 46px orange, -19px -25px 50px magenta, 22px -29px 46px lime, 1px -11px 13px red;
  }

  62.9% {
    transform: scale(0.54) rotate(274.0deg) skew(-15.7deg, 72.4deg) translate(-28.7px, 8.3px);
    filter: hue-rotate(322.0deg) blur(6.4px) saturate(250%);
    opacity: 0.66;
    background: blue;
    text-shadow: -15px 26px 8px lime, 8px 9px 50px orange, -19px 22px 31px pink, -27px 11px 31px red, 11px 22px 37px #ff0080, 17px 8px 15px pink, 6px 2px 8px cyan, -11px 18px 28px orange, -16px 2px 25px cyan, 9px 12px 13px yellow;
  }

  63.0% {
    transform: scale(1.41) rotate(598.0deg) skew(-26.7deg, -40.1deg) translate(-63.4px, -76.6px);
    filter: hue-rotate(74.0deg) blur(6.6px) saturate(189%);
    opacity: 0.37;
    background: purple;
    text-shadow: -16px 10px 24px #ff0080, 12px -8px 28px blue, 3px -25px 28px blue, -29px 11px 30px pink, 2px -23px 14px #ff0080, 13px -3px 42px yellow, -18px -27px 43px red, -24px -2px 18px cyan, 23px 0px 37px blue, 24px 8px 42px pink;
  }

  63.1% {
    transform: scale(0.5) rotate(609.8deg) skew(5.4deg, 81.3deg) translate(4.0px, -22.4px);
    filter: hue-rotate(83.8deg) blur(1.3px) saturate(256%);
    opacity: 0.49;
    background: lime;
    text-shadow: -13px -7px 14px cyan, -27px 13px 26px cyan, -20px 24px 33px purple, -17px -24px 38px #ff0080, -25px 11px 19px purple, -9px -20px 10px blue, -24px 2px 5px yellow, -28px 15px 24px yellow, 21px 2px 5px yellow, 28px -13px 26px red;
  }

  63.2% {
    transform: scale(1.11) rotate(391.2deg) skew(9.4deg, -47.5deg) translate(-79.9px, -33.1px);
    filter: hue-rotate(296.6deg) blur(7.2px) saturate(247%);
    opacity: 0.34;
    background: pink;
    text-shadow: 5px 26px 44px red, -6px 19px 9px #ff0080, -8px -10px 13px cyan, 9px -12px 27px yellow, 18px 10px 10px pink, -15px -5px 22px lime, 2px 28px 35px magenta, 28px -6px 43px cyan, -7px 10px 10px yellow, -19px 17px 14px blue;
  }

  63.3% {
    transform: scale(0.54) rotate(53.0deg) skew(-29.9deg, 70.1deg) translate(-68.6px, -72.1px);
    filter: hue-rotate(107.7deg) blur(3.9px) saturate(54%);
    opacity: 0.8;
    background: cyan;
    text-shadow: -15px -1px 11px red, -2px 3px 43px orange, -14px 9px 16px #ff0080, 26px 11px 12px blue, 21px -19px 17px #ff0080, -3px 30px 34px cyan, 29px -7px 23px cyan, 20px -29px 40px cyan, -29px -21px 47px magenta, 22px 30px 42px pink;
  }

  63.4% {
    transform: scale(1.6) rotate(-473.7deg) skew(-72.3deg, 22.5deg) translate(-90.5px, -53.3px);
    filter: hue-rotate(137.4deg) blur(4.8px) saturate(75%);
    opacity: 0.49;
    background: pink;
    text-shadow: 27px 1px 47px pink, -23px 0px 36px yellow, 27px -24px 15px lime, -12px 25px 8px lime, -6px -22px 36px cyan, -8px -30px 33px pink, -3px 23px 49px red, 22px 14px 50px orange, 15px -1px 45px orange, -12px -10px 49px #ff0080;
  }

  63.5% {
    transform: scale(1.21) rotate(-236.8deg) skew(60.0deg, -45.3deg) translate(61.0px, -4.2px);
    filter: hue-rotate(234.4deg) blur(3.0px) saturate(117%);
    opacity: 0.42;
    background: red;
    text-shadow: 13px -26px 44px pink, 11px -16px 26px orange, -24px 18px 31px red, -17px 21px 37px purple, 3px -23px 9px blue, 28px 9px 15px pink, -23px -4px 14px orange, -22px 10px 6px #ff0080, 25px -27px 16px blue, 30px -15px 12px cyan;
  }

  63.6% {
    transform: scale(1.18) rotate(-679.2deg) skew(84.0deg, -78.9deg) translate(12.5px, -85.3px);
    filter: hue-rotate(6.5deg) blur(7.6px) saturate(255%);
    opacity: 0.99;
    background: magenta;
    text-shadow: 8px -23px 12px magenta, -17px 13px 23px #ff0080, 26px 25px 41px yellow, 6px 16px 8px magenta, -10px 30px 29px orange, -15px -25px 46px purple, 16px -23px 37px magenta, -12px -17px 30px lime, 10px -22px 22px yellow, -3px 4px 14px orange;
  }

  63.7% {
    transform: scale(1.14) rotate(-480.3deg) skew(10.7deg, 70.6deg) translate(-63.2px, 3.2px);
    filter: hue-rotate(179.6deg) blur(2.0px) saturate(295%);
    opacity: 0.34;
    background: red;
    text-shadow: 9px 8px 28px pink, 13px 26px 31px pink, -4px -19px 8px blue, 5px -27px 18px #ff0080, 21px 11px 43px blue, -26px -28px 10px purple, -12px -20px 29px orange, -26px -4px 39px purple, -17px 15px 31px magenta, 7px -25px 32px purple;
  }

  63.8% {
    transform: scale(1.87) rotate(8.5deg) skew(-38.4deg, -85.9deg) translate(-10.3px, -78.0px);
    filter: hue-rotate(155.7deg) blur(5.0px) saturate(286%);
    opacity: 0.48;
    background: #ff0080;
    text-shadow: -17px -13px 10px yellow, 23px 0px 7px purple, -16px -23px 23px purple, 26px 4px 32px magenta, 21px -22px 33px pink, -23px 20px 10px purple, -8px 10px 13px red, 26px -3px 49px #ff0080, 26px 13px 46px lime, -10px 17px 26px red;
  }

  63.9% {
    transform: scale(1.15) rotate(-346.0deg) skew(53.3deg, 21.2deg) translate(0.3px, 25.1px);
    filter: hue-rotate(82.3deg) blur(6.5px) saturate(277%);
    opacity: 0.52;
    background: orange;
    text-shadow: 12px -24px 10px blue, 6px -7px 17px magenta, 18px 19px 48px orange, 28px 28px 46px yellow, -8px -28px 39px blue, -3px 21px 35px magenta, -9px 27px 31px magenta, 13px 10px 37px #ff0080, 21px -18px 14px red, -22px -20px 19px blue;
  }

  64.0% {
    transform: scale(1.36) rotate(119.6deg) skew(-24.0deg, -84.0deg) translate(-47.9px, -21.0px);
    filter: hue-rotate(331.8deg) blur(0.3px) saturate(275%);
    opacity: 0.78;
    background: magenta;
    text-shadow: 27px -14px 12px purple, -4px 22px 12px red, 14px 24px 27px magenta, -11px 3px 18px blue, 8px -9px 32px orange, -20px -20px 23px lime, 12px 22px 35px yellow, 1px 8px 6px pink, -4px -11px 18px lime, 23px 25px 38px cyan;
  }

  64.1% {
    transform: scale(0.84) rotate(101.7deg) skew(-69.2deg, 10.7deg) translate(4.9px, -36.0px);
    filter: hue-rotate(16.8deg) blur(5.1px) saturate(220%);
    opacity: 0.93;
    background: pink;
    text-shadow: -4px -13px 33px purple, 18px -22px 39px pink, -26px 18px 37px pink, 26px -27px 43px cyan, 4px -29px 50px pink, 18px -11px 33px #ff0080, -25px -7px 21px yellow, 24px 7px 15px purple, -7px -7px 47px magenta, -24px 10px 40px red;
  }

  64.2% {
    transform: scale(1.96) rotate(528.3deg) skew(-22.7deg, -63.2deg) translate(48.0px, 4.8px);
    filter: hue-rotate(248.2deg) blur(6.5px) saturate(222%);
    opacity: 0.97;
    background: cyan;
    text-shadow: -4px 19px 20px yellow, 14px 20px 17px yellow, 26px 18px 8px cyan, 21px -27px 12px yellow, -12px -2px 15px magenta, 30px 29px 35px blue, 2px 29px 37px #ff0080, 15px 1px 43px red, 30px -26px 5px pink, -6px 4px 37px magenta;
  }

  64.3% {
    transform: scale(1.2) rotate(449.4deg) skew(-76.9deg, 35.0deg) translate(45.8px, -81.5px);
    filter: hue-rotate(217.5deg) blur(9.1px) saturate(140%);
    opacity: 0.75;
    background: lime;
    text-shadow: -7px -8px 16px purple, 30px -15px 10px red, -28px 2px 45px blue, -26px 27px 36px orange, 12px -9px 7px blue, -30px -26px 46px lime, 0px -12px 10px lime, -30px -1px 9px cyan, -12px -5px 29px purple, -24px -26px 41px blue;
  }

  64.4% {
    transform: scale(0.57) rotate(-49.4deg) skew(56.9deg, -49.4deg) translate(-71.3px, 76.1px);
    filter: hue-rotate(281.2deg) blur(4.6px) saturate(95%);
    opacity: 0.98;
    background: purple;
    text-shadow: 24px -8px 25px yellow, -29px -5px 29px lime, -8px -29px 17px magenta, -5px 9px 8px lime, -21px -5px 15px purple, -10px -11px 33px lime, -6px 16px 8px magenta, -11px 8px 9px #ff0080, 11px -28px 39px orange, 13px -2px 15px magenta;
  }

  64.5% {
    transform: scale(1.52) rotate(34.9deg) skew(-19.1deg, 88.9deg) translate(-75.7px, 23.7px);
    filter: hue-rotate(159.3deg) blur(8.7px) saturate(189%);
    opacity: 0.66;
    background: blue;
    text-shadow: -30px -6px 28px orange, -23px 14px 37px lime, -11px 25px 10px magenta, 18px -25px 35px cyan, 23px -21px 43px yellow, -22px 14px 20px pink, -11px 30px 38px magenta, 28px -9px 47px purple, -15px -6px 41px lime, -16px -8px 24px purple;
  }

  64.6% {
    transform: scale(1.56) rotate(-619.6deg) skew(-14.8deg, -73.1deg) translate(-42.4px, -70.5px);
    filter: hue-rotate(65.9deg) blur(8.4px) saturate(188%);
    opacity: 0.84;
    background: pink;
    text-shadow: 8px 9px 35px purple, -4px -24px 33px #ff0080, -1px 21px 39px purple, 8px 25px 6px lime, -26px 14px 29px blue, 2px -28px 5px orange, 16px 25px 16px blue, -22px -22px 17px red, 9px -9px 11px red, -10px 16px 13px purple;
  }

  64.7% {
    transform: scale(1.38) rotate(576.1deg) skew(67.5deg, 0.7deg) translate(69.6px, 48.9px);
    filter: hue-rotate(184.6deg) blur(8.4px) saturate(183%);
    opacity: 0.82;
    background: blue;
    text-shadow: -16px -5px 18px #ff0080, 6px -24px 41px magenta, -3px -16px 14px yellow, -7px 8px 32px purple, -5px 26px 35px red, -26px 9px 26px cyan, -13px -17px 10px cyan, -9px -8px 41px orange, 28px -27px 43px blue, -1px -28px 21px pink;
  }

  64.8% {
    transform: scale(1.23) rotate(-670.6deg) skew(79.8deg, 1.9deg) translate(67.3px, -11.9px);
    filter: hue-rotate(125.5deg) blur(5.2px) saturate(252%);
    opacity: 0.85;
    background: magenta;
    text-shadow: 10px -16px 39px yellow, 28px 23px 35px orange, 4px -17px 48px #ff0080, 25px 22px 9px pink, 19px -2px 36px cyan, 10px 25px 10px pink, 7px -27px 41px lime, 24px 7px 19px purple, -22px -2px 37px cyan, -16px 7px 42px pink;
  }

  64.9% {
    transform: scale(1.72) rotate(29.3deg) skew(-71.9deg, -14.6deg) translate(79.9px, -69.1px);
    filter: hue-rotate(301.5deg) blur(4.4px) saturate(212%);
    opacity: 0.58;
    background: yellow;
    text-shadow: -26px 20px 27px lime, 19px 22px 42px pink, -15px -11px 36px lime, -15px -13px 43px blue, 6px -21px 25px lime, -18px 16px 29px magenta, 7px -2px 47px magenta, 14px -14px 18px magenta, -20px -13px 47px pink, -25px 30px 18px yellow;
  }

  65.0% {
    transform: scale(1.16) rotate(39.7deg) skew(-53.3deg, 68.4deg) translate(-99.6px, -25.7px);
    filter: hue-rotate(171.5deg) blur(4.6px) saturate(148%);
    opacity: 0.83;
    background: cyan;
    text-shadow: 20px -9px 19px cyan, 7px 16px 9px orange, 22px 10px 6px lime, -12px 16px 47px pink, -10px -20px 38px pink, -9px 24px 11px yellow, -18px 30px 36px magenta, -4px 15px 39px red, -9px -26px 31px pink, 9px 2px 9px yellow;
  }

  65.1% {
    transform: scale(0.81) rotate(661.6deg) skew(87.7deg, 68.1deg) translate(95.3px, 91.2px);
    filter: hue-rotate(261.5deg) blur(9.6px) saturate(143%);
    opacity: 0.71;
    background: magenta;
    text-shadow: -3px -1px 18px cyan, -19px 1px 27px blue, 24px -18px 12px yellow, 15px 26px 28px #ff0080, -15px 1px 13px orange, -21px 13px 15px red, 16px -22px 16px yellow, 25px 1px 16px magenta, -14px 5px 33px magenta, -2px 28px 33px magenta;
  }

  65.2% {
    transform: scale(0.96) rotate(-434.0deg) skew(-42.4deg, 34.3deg) translate(93.4px, -98.3px);
    filter: hue-rotate(20.2deg) blur(6.5px) saturate(235%);
    opacity: 0.44;
    background: red;
    text-shadow: 29px 25px 7px cyan, 11px -28px 39px yellow, 20px 16px 39px cyan, -2px 6px 23px blue, -5px 29px 26px cyan, 20px -13px 10px magenta, 29px 13px 27px orange, -2px 13px 14px yellow, 19px -16px 36px yellow, 0px 10px 18px magenta;
  }

  65.3% {
    transform: scale(1.5) rotate(-350.1deg) skew(-58.9deg, 75.5deg) translate(60.0px, 35.1px);
    filter: hue-rotate(255.8deg) blur(0.2px) saturate(129%);
    opacity: 0.65;
    background: magenta;
    text-shadow: 20px -15px 13px yellow, 29px -26px 39px orange, -9px 0px 20px magenta, 27px -11px 18px pink, 0px 16px 18px cyan, -10px -21px 14px blue, 5px 21px 46px red, -12px 17px 24px purple, -16px -21px 17px purple, 1px -24px 32px magenta;
  }

  65.4% {
    transform: scale(1.39) rotate(-583.1deg) skew(1.3deg, -50.7deg) translate(-57.4px, 20.1px);
    filter: hue-rotate(175.7deg) blur(7.4px) saturate(69%);
    opacity: 0.53;
    background: pink;
    text-shadow: -19px -21px 40px yellow, 10px -25px 48px pink, 15px 3px 20px cyan, 7px 17px 18px blue, 2px -14px 26px #ff0080, -2px 5px 17px red, 19px -9px 9px red, 20px 16px 10px pink, 22px 0px 43px purple, 17px 14px 39px pink;
  }

  65.5% {
    transform: scale(1.81) rotate(557.8deg) skew(-7.2deg, 63.7deg) translate(-60.3px, -90.0px);
    filter: hue-rotate(89.4deg) blur(5.6px) saturate(153%);
    opacity: 0.55;
    background: #ff0080;
    text-shadow: -24px -15px 15px lime, -6px -20px 49px blue, -24px -24px 21px blue, -14px 7px 30px pink, -18px 21px 45px yellow, 11px 12px 33px lime, 25px -20px 33px #ff0080, 30px -10px 22px cyan, 17px -15px 38px blue, -4px -12px 48px yellow;
  }

  65.6% {
    transform: scale(1.4) rotate(-601.5deg) skew(-56.6deg, -65.7deg) translate(54.4px, 69.0px);
    filter: hue-rotate(175.7deg) blur(5.9px) saturate(233%);
    opacity: 0.93;
    background: magenta;
    text-shadow: 9px 6px 23px magenta, -10px -6px 43px red, 18px -2px 12px cyan, -17px -11px 19px pink, 27px 2px 45px yellow, 28px -4px 50px cyan, 19px 28px 14px #ff0080, 14px 11px 34px blue, -11px -28px 21px magenta, -1px -17px 11px pink;
  }

  65.7% {
    transform: scale(1.15) rotate(584.4deg) skew(-5.6deg, 31.5deg) translate(4.3px, 74.5px);
    filter: hue-rotate(320.5deg) blur(4.1px) saturate(225%);
    opacity: 0.58;
    background: purple;
    text-shadow: 19px -27px 47px orange, 21px 24px 14px magenta, 19px 24px 19px orange, 20px 29px 43px purple, 24px -5px 20px pink, -17px -29px 47px #ff0080, -30px 18px 31px #ff0080, -25px 12px 31px yellow, -30px 20px 24px yellow, 3px 27px 34px purple;
  }

  65.8% {
    transform: scale(1.05) rotate(-18.6deg) skew(-16.4deg, -3.5deg) translate(-0.1px, 88.2px);
    filter: hue-rotate(231.5deg) blur(6.1px) saturate(121%);
    opacity: 0.44;
    background: lime;
    text-shadow: -4px 28px 39px blue, -4px -5px 26px blue, 25px -3px 27px #ff0080, 10px -18px 46px lime, 28px -15px 46px red, -1px 19px 43px red, -27px 14px 6px cyan, -13px -17px 30px magenta, -17px 11px 37px purple, 23px 0px 24px cyan;
  }

  65.9% {
    transform: scale(0.93) rotate(-64.9deg) skew(45.5deg, -0.5deg) translate(-76.4px, 23.9px);
    filter: hue-rotate(322.9deg) blur(6.9px) saturate(164%);
    opacity: 0.86;
    background: cyan;
    text-shadow: 2px 6px 27px purple, -3px -11px 30px cyan, -14px 2px 48px red, -3px -27px 9px #ff0080, 12px -20px 45px red, -14px 19px 26px pink, -28px -26px 43px orange, -8px 19px 13px blue, 16px 17px 14px purple, -17px -10px 45px cyan;
  }

  66.0% {
    transform: scale(1.92) rotate(-258.6deg) skew(-40.1deg, 36.0deg) translate(-60.8px, -36.6px);
    filter: hue-rotate(139.7deg) blur(2.3px) saturate(149%);
    opacity: 0.55;
    background: blue;
    text-shadow: -29px -29px 7px cyan, -28px 6px 16px blue, 26px 21px 11px #ff0080, 7px 1px 32px lime, -25px -6px 15px pink, 5px 4px 14px blue, -16px -21px 26px magenta, 15px -6px 24px blue, 19px -11px 12px blue, 27px -24px 25px yellow;
  }

  66.1% {
    transform: scale(1.93) rotate(-253.9deg) skew(-32.9deg, 29.6deg) translate(-2.2px, 6.6px);
    filter: hue-rotate(172.0deg) blur(7.0px) saturate(173%);
    opacity: 0.44;
    background: lime;
    text-shadow: -29px -5px 16px blue, 16px 22px 35px magenta, -28px -3px 28px orange, 22px -3px 20px pink, 4px 3px 45px magenta, -16px 28px 7px yellow, 10px 29px 10px lime, -30px 22px 34px #ff0080, 8px -11px 38px #ff0080, -9px 1px 42px purple;
  }

  66.2% {
    transform: scale(1.38) rotate(-435.9deg) skew(57.6deg, -30.4deg) translate(-96.4px, 82.5px);
    filter: hue-rotate(122.0deg) blur(3.8px) saturate(156%);
    opacity: 0.73;
    background: magenta;
    text-shadow: -18px -9px 35px blue, 18px 23px 14px #ff0080, 17px 7px 49px lime, 28px 26px 33px purple, 25px 26px 23px purple, 22px 18px 31px pink, 0px -22px 43px #ff0080, -8px -19px 6px red, -12px 21px 28px yellow, -12px -14px 41px purple;
  }

  66.3% {
    transform: scale(0.63) rotate(-205.1deg) skew(75.3deg, 17.3deg) translate(-77.1px, 58.8px);
    filter: hue-rotate(69.9deg) blur(3.1px) saturate(225%);
    opacity: 0.92;
    background: lime;
    text-shadow: -12px -2px 48px #ff0080, -5px -22px 29px purple, -22px -11px 42px orange, 22px -14px 8px pink, 11px 22px 29px lime, 3px 19px 38px yellow, -22px 25px 34px red, 8px 9px 37px lime, -26px -21px 7px red, 20px -8px 28px lime;
  }

  66.4% {
    transform: scale(1.36) rotate(-648.5deg) skew(74.7deg, -29.3deg) translate(-21.1px, -71.6px);
    filter: hue-rotate(295.8deg) blur(5.6px) saturate(128%);
    opacity: 0.83;
    background: purple;
    text-shadow: 5px 11px 10px cyan, 10px 0px 46px blue, 28px 27px 50px blue, 15px -11px 24px cyan, 18px -23px 26px lime, -15px -26px 34px pink, 18px 11px 49px purple, 16px 11px 18px orange, -2px -13px 15px pink, 10px 13px 33px #ff0080;
  }

  66.5% {
    transform: scale(1.97) rotate(641.9deg) skew(52.5deg, -67.6deg) translate(-15.5px, -46.2px);
    filter: hue-rotate(256.7deg) blur(3.0px) saturate(75%);
    opacity: 0.45;
    background: magenta;
    text-shadow: 30px -22px 8px cyan, -16px -20px 44px purple, -23px 8px 24px purple, -10px 2px 32px purple, 11px -21px 47px orange, -26px -13px 14px magenta, 1px -6px 8px cyan, -23px 7px 38px red, 29px -3px 15px orange, -17px -26px 19px blue;
  }

  66.6% {
    transform: scale(1.22) rotate(527.4deg) skew(1.2deg, 9.8deg) translate(-86.2px, -76.9px);
    filter: hue-rotate(325.5deg) blur(0.5px) saturate(176%);
    opacity: 0.69;
    background: #ff0080;
    text-shadow: 18px -27px 18px magenta, 8px 4px 24px orange, -26px 23px 27px blue, -19px 26px 16px red, -22px -14px 50px yellow, -20px -18px 49px #ff0080, -21px -5px 44px purple, 12px 14px 45px pink, 16px 14px 33px #ff0080, 21px -19px 30px orange;
  }

  66.7% {
    transform: scale(1.04) rotate(634.4deg) skew(30.2deg, 63.6deg) translate(-94.7px, 2.2px);
    filter: hue-rotate(11.9deg) blur(5.0px) saturate(178%);
    opacity: 0.55;
    background: #ff0080;
    text-shadow: 30px 9px 13px magenta, 11px -8px 44px magenta, -12px -18px 19px lime, -28px 5px 39px #ff0080, -12px -8px 12px lime, 10px 23px 38px pink, 5px -1px 28px purple, 1px -3px 29px pink, -9px 5px 21px purple, 24px 19px 15px magenta;
  }

  66.8% {
    transform: scale(1.39) rotate(487.6deg) skew(13.3deg, -69.3deg) translate(37.8px, 76.8px);
    filter: hue-rotate(247.6deg) blur(8.3px) saturate(237%);
    opacity: 0.35;
    background: pink;
    text-shadow: 13px -9px 18px magenta, 29px -20px 28px pink, -25px -4px 5px orange, 1px -10px 29px pink, -28px 21px 5px cyan, 12px 20px 27px pink, 27px -23px 40px orange, 9px 25px 49px pink, -14px -8px 47px orange, 5px 30px 24px yellow;
  }

  66.9% {
    transform: scale(1.65) rotate(105.6deg) skew(81.8deg, -18.6deg) translate(93.4px, 69.3px);
    filter: hue-rotate(358.0deg) blur(8.3px) saturate(104%);
    opacity: 0.77;
    background: red;
    text-shadow: -11px -2px 26px purple, -3px 20px 13px pink, 24px 6px 38px orange, 6px 3px 19px #ff0080, 19px -29px 16px cyan, -4px 25px 35px blue, 29px -29px 38px purple, 8px -30px 25px red, -14px 19px 38px magenta, 24px -17px 6px blue;
  }

  67.0% {
    transform: scale(1.04) rotate(228.5deg) skew(65.8deg, 36.3deg) translate(3.8px, -18.7px);
    filter: hue-rotate(218.1deg) blur(2.3px) saturate(144%);
    opacity: 0.3;
    background: red;
    text-shadow: -27px -6px 17px yellow, -19px -20px 49px cyan, -15px -8px 17px red, -14px -16px 49px lime, -5px -28px 25px purple, 13px 19px 39px #ff0080, 15px -18px 9px #ff0080, 11px -20px 18px blue, -17px -27px 19px cyan, 4px -8px 48px orange;
  }

  67.1% {
    transform: scale(1.19) rotate(470.1deg) skew(82.9deg, -54.7deg) translate(-36.8px, -41.1px);
    filter: hue-rotate(37.7deg) blur(8.0px) saturate(142%);
    opacity: 0.52;
    background: yellow;
    text-shadow: -18px -22px 16px pink, 29px 21px 26px #ff0080, 23px 14px 21px pink, -5px -12px 11px pink, 5px -3px 15px purple, -9px -5px 13px blue, -20px 11px 45px lime, -19px -29px 15px orange, 26px 20px 29px lime, -13px -26px 28px red;
  }

  67.2% {
    transform: scale(0.77) rotate(-428.9deg) skew(-56.6deg, -50.2deg) translate(38.9px, 81.0px);
    filter: hue-rotate(169.4deg) blur(8.6px) saturate(62%);
    opacity: 0.34;
    background: purple;
    text-shadow: 4px 29px 15px pink, 6px 18px 50px red, -4px 21px 14px cyan, 21px 19px 20px pink, -23px -15px 45px magenta, 11px -21px 6px #ff0080, -17px 29px 22px purple, 20px -28px 21px yellow, 28px -18px 6px pink, -22px 11px 14px cyan;
  }

  67.3% {
    transform: scale(1.13) rotate(-15.9deg) skew(66.0deg, 35.4deg) translate(68.5px, 67.9px);
    filter: hue-rotate(295.3deg) blur(0.5px) saturate(68%);
    opacity: 0.81;
    background: lime;
    text-shadow: 27px -9px 39px lime, -3px 12px 40px orange, 14px 28px 31px blue, -5px 19px 6px lime, 27px 20px 14px cyan, 15px -26px 12px #ff0080, 13px -18px 23px cyan, -5px 6px 10px lime, 1px -13px 15px cyan, 28px -14px 17px cyan;
  }

  67.4% {
    transform: scale(1.92) rotate(-22.8deg) skew(-68.2deg, -55.8deg) translate(-96.9px, 12.5px);
    filter: hue-rotate(351.2deg) blur(4.1px) saturate(184%);
    opacity: 0.81;
    background: lime;
    text-shadow: 7px 18px 10px lime, -8px -9px 7px cyan, 8px 26px 45px purple, -29px -27px 6px lime, -26px -20px 39px red, -2px -10px 34px blue, 29px 28px 9px pink, -29px -11px 47px blue, -14px -16px 40px orange, 20px -14px 13px magenta;
  }

  67.5% {
    transform: scale(1.79) rotate(230.1deg) skew(-89.8deg, -72.1deg) translate(-91.0px, 56.4px);
    filter: hue-rotate(17.0deg) blur(0.2px) saturate(88%);
    opacity: 0.77;
    background: purple;
    text-shadow: 5px -26px 33px pink, -24px 28px 50px magenta, -4px -23px 24px lime, 12px 17px 32px #ff0080, -12px 0px 43px blue, 2px -6px 48px yellow, -19px 7px 38px orange, -26px 4px 24px lime, 15px 23px 38px cyan, -16px -30px 30px magenta;
  }

  67.6% {
    transform: scale(1.35) rotate(359.3deg) skew(-52.8deg, 13.8deg) translate(-24.0px, -94.3px);
    filter: hue-rotate(164.1deg) blur(8.9px) saturate(82%);
    opacity: 0.69;
    background: orange;
    text-shadow: 14px 25px 13px pink, -6px -17px 27px red, 14px -28px 36px magenta, -17px 9px 41px cyan, -25px 8px 40px lime, 26px -16px 28px yellow, -10px 1px 50px orange, 9px -24px 18px red, 2px -15px 11px magenta, 20px -10px 41px yellow;
  }

  67.7% {
    transform: scale(0.95) rotate(9.1deg) skew(14.5deg, 61.9deg) translate(81.0px, 23.8px);
    filter: hue-rotate(202.9deg) blur(8.9px) saturate(51%);
    opacity: 0.38;
    background: cyan;
    text-shadow: 13px -9px 46px #ff0080, 23px -16px 11px purple, 9px -3px 50px orange, -21px -12px 50px magenta, -26px -17px 26px #ff0080, 28px 27px 32px red, 8px 14px 12px orange, 21px 9px 34px lime, -22px 9px 38px pink, -27px -2px 9px orange;
  }

  67.8% {
    transform: scale(1.27) rotate(572.0deg) skew(-73.8deg, 1.0deg) translate(-93.1px, -93.7px);
    filter: hue-rotate(220.0deg) blur(8.7px) saturate(197%);
    opacity: 0.63;
    background: cyan;
    text-shadow: -16px 20px 35px orange, -12px -6px 26px yellow, 19px -13px 37px purple, 24px -24px 5px blue, 19px 1px 41px red, -25px -3px 45px #ff0080, 18px -1px 7px red, -11px 22px 24px red, -14px 29px 38px pink, 26px 12px 7px #ff0080;
  }

  67.9% {
    transform: scale(1.33) rotate(-472.2deg) skew(-49.5deg, 63.5deg) translate(81.1px, 74.8px);
    filter: hue-rotate(22.6deg) blur(6.3px) saturate(286%);
    opacity: 0.45;
    background: red;
    text-shadow: 1px 23px 10px lime, 28px -12px 22px magenta, 18px 15px 17px blue, 7px 9px 27px lime, 17px 9px 47px #ff0080, -1px -10px 38px #ff0080, -27px -18px 10px blue, 14px 25px 25px pink, -8px -21px 18px blue, 30px 15px 17px cyan;
  }

  68.0% {
    transform: scale(1.25) rotate(-581.2deg) skew(82.6deg, -21.8deg) translate(14.0px, -75.4px);
    filter: hue-rotate(61.9deg) blur(5.2px) saturate(199%);
    opacity: 0.51;
    background: purple;
    text-shadow: 6px 17px 20px pink, 16px 27px 22px blue, 20px -18px 43px cyan, 9px -14px 6px cyan, -21px -19px 10px #ff0080, 5px 8px 36px yellow, 27px -5px 5px cyan, -17px -16px 22px lime, -3px 28px 13px #ff0080, -28px -24px 47px orange;
  }

  68.1% {
    transform: scale(0.97) rotate(609.0deg) skew(82.7deg, 23.1deg) translate(-48.2px, 84.3px);
    filter: hue-rotate(88.8deg) blur(8.7px) saturate(180%);
    opacity: 0.72;
    background: cyan;
    text-shadow: 24px 18px 46px cyan, -26px 1px 10px pink, 18px -5px 44px purple, -12px 9px 21px cyan, -19px -8px 9px blue, -26px -5px 43px pink, -4px 4px 20px cyan, -7px 0px 13px red, 18px 30px 28px orange, 15px 12px 24px blue;
  }

  68.2% {
    transform: scale(0.52) rotate(-577.8deg) skew(-73.7deg, 8.4deg) translate(53.6px, -71.1px);
    filter: hue-rotate(59.7deg) blur(3.3px) saturate(282%);
    opacity: 0.87;
    background: cyan;
    text-shadow: -27px -1px 40px red, 20px -9px 18px cyan, 19px 1px 33px pink, 1px 1px 9px red, 24px 9px 20px red, -26px -5px 40px cyan, 15px -30px 11px yellow, 24px -17px 42px #ff0080, 22px -8px 32px cyan, -9px -12px 49px #ff0080;
  }

  68.3% {
    transform: scale(0.56) rotate(-511.9deg) skew(56.8deg, -77.7deg) translate(-96.6px, 68.7px);
    filter: hue-rotate(263.0deg) blur(0.1px) saturate(283%);
    opacity: 0.35;
    background: red;
    text-shadow: -7px 3px 19px magenta, -24px 4px 48px blue, -3px -9px 7px yellow, -8px -17px 28px cyan, -13px -2px 6px pink, -23px -20px 35px blue, 18px -20px 11px purple, -25px -1px 27px pink, 14px -4px 42px orange, 10px -18px 13px magenta;
  }

  68.4% {
    transform: scale(1.22) rotate(-645.6deg) skew(52.8deg, -66.7deg) translate(83.1px, -94.2px);
    filter: hue-rotate(31.3deg) blur(2.7px) saturate(279%);
    opacity: 0.86;
    background: #ff0080;
    text-shadow: 18px 8px 19px #ff0080, 28px -13px 6px red, 0px 10px 8px lime, 13px 28px 36px purple, 7px -28px 9px magenta, -14px 4px 37px pink, 20px -18px 43px orange, 20px -17px 47px red, 14px -11px 47px purple, 26px 1px 13px red;
  }

  68.5% {
    transform: scale(0.89) rotate(-532.6deg) skew(64.9deg, -56.8deg) translate(-36.0px, 74.2px);
    filter: hue-rotate(37.2deg) blur(4.9px) saturate(259%);
    opacity: 0.39;
    background: pink;
    text-shadow: -2px -8px 27px lime, -28px 22px 46px purple, 18px -4px 17px yellow, -7px -23px 46px #ff0080, 18px -13px 48px purple, -2px 24px 23px magenta, 9px -23px 26px cyan, -22px 4px 15px red, 30px 22px 46px yellow, 29px 29px 36px yellow;
  }

  68.6% {
    transform: scale(1.27) rotate(-355.0deg) skew(1.6deg, -49.4deg) translate(59.4px, 78.2px);
    filter: hue-rotate(150.3deg) blur(8.8px) saturate(215%);
    opacity: 0.96;
    background: purple;
    text-shadow: 3px 3px 14px yellow, 24px 22px 13px magenta, -1px -12px 39px purple, -28px 17px 26px orange, -1px -21px 32px #ff0080, 21px -13px 19px lime, 7px -23px 11px lime, -19px 1px 8px yellow, -25px 30px 50px red, 12px -7px 40px magenta;
  }

  68.7% {
    transform: scale(1.55) rotate(-238.8deg) skew(-9.9deg, 41.2deg) translate(-63.0px, -43.2px);
    filter: hue-rotate(334.7deg) blur(0.3px) saturate(284%);
    opacity: 1.0;
    background: pink;
    text-shadow: 5px 1px 20px blue, -7px 28px 39px purple, 14px 17px 6px red, 23px 2px 44px pink, -11px 3px 31px yellow, -12px 17px 10px blue, 6px 27px 20px lime, 26px -30px 27px orange, -8px 17px 39px pink, -19px -6px 14px red;
  }

  68.8% {
    transform: scale(1.75) rotate(411.6deg) skew(-74.4deg, 9.7deg) translate(4.7px, -95.9px);
    filter: hue-rotate(64.0deg) blur(8.8px) saturate(212%);
    opacity: 0.4;
    background: blue;
    text-shadow: -24px 1px 48px blue, -19px -25px 47px pink, 27px -28px 47px magenta, 26px 12px 5px cyan, 4px 23px 13px magenta, -6px 10px 12px magenta, -28px -7px 33px yellow, 11px 3px 44px red, 12px 6px 17px pink, 3px -22px 47px orange;
  }

  68.9% {
    transform: scale(0.91) rotate(-81.7deg) skew(48.9deg, 47.3deg) translate(-15.0px, 45.9px);
    filter: hue-rotate(266.1deg) blur(1.7px) saturate(264%);
    opacity: 0.78;
    background: purple;
    text-shadow: -17px 21px 12px magenta, 10px 30px 45px yellow, 12px 12px 41px pink, -19px -27px 29px orange, -25px -16px 30px orange, 8px -19px 37px pink, -30px 18px 14px #ff0080, 11px -11px 40px pink, 5px -27px 35px yellow, 20px 5px 45px magenta;
  }

  69.0% {
    transform: scale(0.58) rotate(525.5deg) skew(-79.5deg, -70.9deg) translate(-97.3px, 18.1px);
    filter: hue-rotate(238.0deg) blur(7.3px) saturate(110%);
    opacity: 0.53;
    background: #ff0080;
    text-shadow: 25px -22px 8px #ff0080, 15px -15px 46px cyan, 23px 18px 26px #ff0080, -9px 13px 30px pink, 15px 2px 40px lime, 7px -6px 20px magenta, 4px -19px 37px orange, 24px -8px 18px cyan, 25px -29px 46px pink, 23px -3px 44px cyan;
  }

  69.1% {
    transform: scale(0.6) rotate(-515.0deg) skew(-4.2deg, 47.9deg) translate(1.5px, -55.2px);
    filter: hue-rotate(30.2deg) blur(8.4px) saturate(236%);
    opacity: 0.99;
    background: orange;
    text-shadow: 30px -18px 9px #ff0080, 23px 26px 31px magenta, 13px 20px 41px yellow, -3px 19px 42px cyan, -19px -24px 27px magenta, -25px -8px 9px magenta, -30px 24px 35px yellow, -10px -18px 29px red, -30px 23px 16px red, 6px -2px 41px cyan;
  }

  69.2% {
    transform: scale(1.92) rotate(-427.1deg) skew(-24.2deg, -37.3deg) translate(82.9px, -39.7px);
    filter: hue-rotate(232.6deg) blur(4.9px) saturate(224%);
    opacity: 0.88;
    background: #ff0080;
    text-shadow: -19px -15px 28px pink, 14px 10px 42px cyan, -22px 10px 33px red, 17px -3px 29px yellow, -6px 9px 38px orange, -23px -13px 8px lime, -9px -14px 10px red, -21px 11px 43px blue, 28px 26px 6px lime, 10px -19px 43px lime;
  }

  69.3% {
    transform: scale(0.94) rotate(151.2deg) skew(-10.3deg, 58.8deg) translate(51.6px, 1.0px);
    filter: hue-rotate(261.2deg) blur(1.5px) saturate(213%);
    opacity: 0.99;
    background: blue;
    text-shadow: -23px 17px 43px lime, 25px 9px 39px lime, -2px -3px 14px pink, -21px 27px 43px lime, 7px -2px 23px yellow, 10px 22px 43px magenta, 25px 2px 38px lime, -1px 12px 50px blue, 18px 28px 27px cyan, -4px 17px 17px cyan;
  }

  69.4% {
    transform: scale(1.21) rotate(636.9deg) skew(8.3deg, 47.8deg) translate(20.8px, 63.3px);
    filter: hue-rotate(336.6deg) blur(3.4px) saturate(238%);
    opacity: 0.44;
    background: yellow;
    text-shadow: -30px 0px 10px yellow, 0px 16px 38px cyan, 1px 8px 28px red, 12px -16px 19px orange, -30px 27px 24px red, -11px 10px 35px purple, -3px 2px 15px cyan, 15px -29px 34px #ff0080, 19px 11px 48px lime, 28px -14px 16px yellow;
  }

  69.5% {
    transform: scale(0.82) rotate(168.1deg) skew(44.0deg, -52.5deg) translate(-37.5px, -6.9px);
    filter: hue-rotate(214.0deg) blur(9.5px) saturate(109%);
    opacity: 0.61;
    background: orange;
    text-shadow: 16px 23px 36px magenta, -8px 14px 28px pink, -22px -25px 13px blue, -19px 13px 6px lime, 3px 0px 13px yellow, 10px 6px 21px orange, 17px -25px 49px magenta, 26px 0px 44px cyan, 27px 0px 43px lime, 0px -8px 34px orange;
  }

  69.6% {
    transform: scale(1.57) rotate(50.9deg) skew(-29.6deg, -57.1deg) translate(-7.7px, 36.2px);
    filter: hue-rotate(245.9deg) blur(3.5px) saturate(79%);
    opacity: 0.34;
    background: cyan;
    text-shadow: -16px 8px 18px blue, 3px 25px 21px purple, -16px 2px 13px #ff0080, 9px 27px 5px red, 14px -24px 48px orange, 19px 25px 39px red, 0px -11px 6px magenta, -16px 1px 32px lime, 25px 11px 8px yellow, 14px 1px 49px purple;
  }

  69.7% {
    transform: scale(1.72) rotate(328.3deg) skew(-13.4deg, -53.5deg) translate(-78.9px, -71.6px);
    filter: hue-rotate(91.5deg) blur(8.8px) saturate(140%);
    opacity: 0.61;
    background: blue;
    text-shadow: 10px 27px 45px purple, -7px -8px 49px magenta, -14px -21px 28px #ff0080, -4px -8px 31px blue, 26px -21px 43px magenta, -22px 2px 8px yellow, 5px 12px 39px lime, 14px 0px 15px yellow, -25px 7px 47px pink, -24px -16px 44px cyan;
  }

  69.8% {
    transform: scale(1.29) rotate(-354.2deg) skew(-40.5deg, -62.9deg) translate(10.5px, -33.3px);
    filter: hue-rotate(76.0deg) blur(9.8px) saturate(187%);
    opacity: 0.44;
    background: lime;
    text-shadow: -22px 21px 34px pink, -29px 22px 9px red, 3px 2px 50px magenta, -7px -18px 10px red, -6px 5px 44px lime, -7px -14px 19px orange, -11px 10px 40px purple, 18px -1px 21px orange, 25px 16px 39px red, -21px -1px 24px orange;
  }

  69.9% {
    transform: scale(1.48) rotate(354.9deg) skew(-56.6deg, -74.9deg) translate(-66.9px, -84.2px);
    filter: hue-rotate(199.3deg) blur(2.2px) saturate(133%);
    opacity: 0.35;
    background: orange;
    text-shadow: 1px -15px 31px magenta, -17px 23px 21px yellow, -8px -22px 48px magenta, 10px -12px 33px purple, 5px 7px 35px #ff0080, 25px -20px 27px pink, 6px -12px 46px red, 8px -24px 23px blue, -17px -12px 46px pink, -29px -30px 34px blue;
  }

  70.0% {
    transform: scale(1.28) rotate(535.4deg) skew(-21.6deg, 30.0deg) translate(-13.4px, -96.9px);
    filter: hue-rotate(70.9deg) blur(1.5px) saturate(133%);
    opacity: 0.55;
    background: orange;
    text-shadow: -20px 6px 11px pink, -29px 22px 28px blue, 23px 5px 9px red, 8px -15px 41px cyan, -12px -20px 31px yellow, -29px -24px 36px #ff0080, -30px -7px 44px #ff0080, 7px -24px 20px pink, 22px -28px 22px pink, -9px 13px 21px magenta;
  }

  70.1% {
    transform: scale(0.64) rotate(205.9deg) skew(83.1deg, 14.1deg) translate(64.8px, 54.8px);
    filter: hue-rotate(256.1deg) blur(5.4px) saturate(266%);
    opacity: 0.41;
    background: red;
    text-shadow: 29px -28px 14px lime, -6px 11px 12px magenta, 22px 28px 43px purple, 21px 20px 11px blue, -14px 30px 17px #ff0080, -15px 9px 11px yellow, -1px -30px 23px blue, 24px 6px 8px magenta, -30px -4px 32px cyan, 7px -29px 39px orange;
  }

  70.2% {
    transform: scale(1.85) rotate(191.8deg) skew(-56.0deg, 16.3deg) translate(93.8px, 2.8px);
    filter: hue-rotate(5.2deg) blur(7.6px) saturate(220%);
    opacity: 0.94;
    background: orange;
    text-shadow: -12px -23px 46px pink, 4px 16px 22px #ff0080, -12px 30px 10px yellow, 14px 8px 38px purple, 8px 24px 29px blue, 29px 13px 45px yellow, 14px 14px 47px #ff0080, 18px 18px 40px red, -22px 3px 36px lime, -11px 3px 13px orange;
  }

  70.3% {
    transform: scale(0.61) rotate(-581.1deg) skew(-37.5deg, -31.6deg) translate(90.9px, 79.4px);
    filter: hue-rotate(41.2deg) blur(8.5px) saturate(198%);
    opacity: 0.73;
    background: blue;
    text-shadow: -10px 19px 38px magenta, -10px -19px 25px #ff0080, -16px -3px 20px lime, -5px -3px 9px purple, 9px -21px 50px pink, 4px -2px 26px yellow, 11px 24px 19px lime, -4px 3px 11px yellow, 6px -12px 29px red, -3px -6px 38px orange;
  }

  70.4% {
    transform: scale(0.76) rotate(-670.9deg) skew(-6.3deg, 20.9deg) translate(43.0px, 17.7px);
    filter: hue-rotate(16.9deg) blur(7.4px) saturate(152%);
    opacity: 0.35;
    background: purple;
    text-shadow: 9px 12px 37px magenta, -1px -18px 20px blue, 21px 21px 14px orange, 30px -11px 38px red, 15px 10px 30px purple, -25px 7px 8px yellow, 21px 16px 13px cyan, 26px 2px 35px purple, -14px 1px 31px purple, -21px -16px 14px yellow;
  }

  70.5% {
    transform: scale(1.49) rotate(-35.5deg) skew(48.8deg, 25.5deg) translate(-50.8px, 80.5px);
    filter: hue-rotate(159.3deg) blur(5.6px) saturate(250%);
    opacity: 0.99;
    background: #ff0080;
    text-shadow: 4px 12px 13px #ff0080, -22px 28px 35px cyan, 12px -12px 16px blue, 9px 8px 27px magenta, 14px -12px 18px magenta, 24px 18px 19px magenta, -28px 26px 37px cyan, 13px 29px 11px cyan, 30px 15px 12px #ff0080, -24px -24px 26px yellow;
  }

  70.6% {
    transform: scale(0.64) rotate(617.8deg) skew(-15.7deg, -36.5deg) translate(41.2px, -21.4px);
    filter: hue-rotate(304.3deg) blur(0.7px) saturate(225%);
    opacity: 0.5;
    background: magenta;
    text-shadow: -21px 8px 6px purple, 21px 3px 31px pink, 21px -7px 5px magenta, -1px -17px 10px cyan, 8px 8px 17px red, 22px -4px 8px purple, 0px 5px 16px red, 17px 22px 38px pink, -26px -22px 13px blue, 4px 18px 14px cyan;
  }

  70.7% {
    transform: scale(1.47) rotate(207.7deg) skew(-80.4deg, 45.8deg) translate(-37.9px, -48.4px);
    filter: hue-rotate(55.8deg) blur(6.2px) saturate(267%);
    opacity: 0.52;
    background: purple;
    text-shadow: -2px -12px 21px purple, -11px -29px 47px orange, 2px -19px 9px #ff0080, 27px 16px 7px blue, 30px -16px 50px red, 14px 7px 16px red, -14px -20px 42px lime, 14px -29px 26px orange, -2px -5px 25px pink, 25px -6px 7px yellow;
  }

  70.8% {
    transform: scale(0.94) rotate(-94.0deg) skew(-19.4deg, -88.7deg) translate(93.1px, 95.4px);
    filter: hue-rotate(9.6deg) blur(4.8px) saturate(60%);
    opacity: 0.82;
    background: red;
    text-shadow: 13px 22px 43px purple, -19px 0px 25px cyan, 20px 21px 18px orange, 2px 28px 16px blue, -22px 15px 15px orange, 8px 29px 35px pink, -1px 12px 23px pink, 15px 28px 18px magenta, -26px -11px 25px blue, 17px -28px 29px purple;
  }

  70.9% {
    transform: scale(1.08) rotate(-688.9deg) skew(55.3deg, 9.1deg) translate(-70.6px, -74.6px);
    filter: hue-rotate(359.8deg) blur(8.3px) saturate(180%);
    opacity: 0.36;
    background: magenta;
    text-shadow: -19px -29px 21px blue, 23px -6px 12px yellow, 16px 22px 42px magenta, -1px -2px 31px blue, 0px 23px 25px purple, -3px -15px 26px yellow, 30px -12px 32px pink, 0px 20px 23px red, -27px -19px 42px lime, -29px 18px 21px pink;
  }

  71.0% {
    transform: scale(1.66) rotate(81.8deg) skew(-69.4deg, 36.5deg) translate(-83.6px, -65.9px);
    filter: hue-rotate(164.8deg) blur(2.4px) saturate(169%);
    opacity: 0.7;
    background: blue;
    text-shadow: 10px -6px 34px blue, -18px -2px 32px lime, 15px -29px 26px pink, -2px 9px 27px cyan, 26px 8px 36px cyan, 18px -17px 22px purple, -12px 28px 40px orange, 26px -26px 21px pink, -4px 20px 33px red, 26px -29px 10px cyan;
  }

  71.1% {
    transform: scale(1.18) rotate(11.0deg) skew(73.1deg, 12.8deg) translate(29.7px, 20.1px);
    filter: hue-rotate(32.8deg) blur(1.2px) saturate(129%);
    opacity: 0.47;
    background: pink;
    text-shadow: 22px -14px 19px red, 6px 11px 26px lime, 4px 22px 19px lime, -19px 28px 5px purple, -14px 9px 30px yellow, 5px 6px 49px yellow, 8px 7px 7px red, 3px 8px 41px purple, -21px -1px 34px #ff0080, 26px -23px 38px pink;
  }

  71.2% {
    transform: scale(0.87) rotate(292.9deg) skew(85.1deg, 46.7deg) translate(64.9px, -64.9px);
    filter: hue-rotate(147.6deg) blur(5.7px) saturate(267%);
    opacity: 0.36;
    background: cyan;
    text-shadow: 26px -4px 21px red, -25px 4px 50px yellow, 17px -22px 33px cyan, -11px -15px 35px yellow, -10px 29px 22px magenta, -4px -24px 19px red, -20px -28px 50px lime, 21px -10px 35px cyan, 10px -5px 22px orange, -11px 7px 32px cyan;
  }

  71.3% {
    transform: scale(0.5) rotate(125.7deg) skew(-75.4deg, 60.1deg) translate(-61.6px, -19.9px);
    filter: hue-rotate(344.2deg) blur(2.1px) saturate(126%);
    opacity: 0.61;
    background: purple;
    text-shadow: 28px -13px 30px cyan, -7px 27px 13px red, 9px -8px 32px cyan, -22px 13px 9px yellow, -14px -7px 35px lime, -4px -15px 48px cyan, 28px -26px 13px blue, -20px 29px 24px pink, -13px -26px 42px orange, 28px 9px 39px yellow;
  }

  71.4% {
    transform: scale(1.43) rotate(-275.0deg) skew(-62.8deg, 32.8deg) translate(-25.4px, 45.2px);
    filter: hue-rotate(145.0deg) blur(6.9px) saturate(187%);
    opacity: 0.56;
    background: blue;
    text-shadow: 5px 10px 6px cyan, 14px 14px 14px lime, 29px -11px 44px lime, 9px -30px 31px magenta, 11px -12px 42px blue, 18px -8px 19px orange, -6px -9px 22px lime, -20px -17px 15px orange, 10px -6px 20px red, -24px -20px 13px #ff0080;
  }

  71.5% {
    transform: scale(0.71) rotate(-265.2deg) skew(72.7deg, -50.2deg) translate(22.9px, 32.8px);
    filter: hue-rotate(4.4deg) blur(2.2px) saturate(126%);
    opacity: 0.73;
    background: lime;
    text-shadow: 30px -27px 11px cyan, 24px 20px 10px cyan, 25px -18px 41px orange, 18px -18px 35px orange, -19px -14px 50px red, 13px -18px 48px orange, 29px 26px 14px yellow, 5px -12px 6px cyan, 4px -16px 8px blue, 10px -14px 33px #ff0080;
  }

  71.6% {
    transform: scale(0.72) rotate(-312.2deg) skew(42.7deg, -47.4deg) translate(90.4px, 83.2px);
    filter: hue-rotate(289.0deg) blur(9.2px) saturate(200%);
    opacity: 0.54;
    background: orange;
    text-shadow: -11px -29px 5px orange, -21px -7px 47px blue, 23px 15px 25px lime, -21px 20px 15px orange, 28px -9px 25px #ff0080, 4px 18px 15px magenta, -11px 18px 14px blue, 14px -1px 32px #ff0080, -19px -28px 19px magenta, -16px -11px 34px magenta;
  }

  71.7% {
    transform: scale(0.87) rotate(345.2deg) skew(76.9deg, 46.0deg) translate(-2.7px, 67.1px);
    filter: hue-rotate(315.1deg) blur(4.6px) saturate(109%);
    opacity: 1.0;
    background: blue;
    text-shadow: -28px 8px 8px pink, 12px -23px 17px pink, 9px -26px 27px blue, -21px -20px 42px #ff0080, -25px -29px 9px magenta, 24px 6px 34px cyan, 23px 2px 32px purple, 13px 22px 7px blue, 28px -28px 23px magenta, -6px -21px 45px #ff0080;
  }

  71.8% {
    transform: scale(0.5) rotate(285.2deg) skew(58.4deg, -27.5deg) translate(49.4px, -53.5px);
    filter: hue-rotate(324.6deg) blur(9.6px) saturate(137%);
    opacity: 0.67;
    background: red;
    text-shadow: -17px 21px 32px cyan, -21px 26px 19px blue, -13px 27px 45px blue, 10px -18px 42px pink, -14px 1px 18px red, 23px 5px 11px cyan, -29px -16px 16px cyan, 25px -21px 23px magenta, -16px 8px 41px yellow, -21px -29px 47px #ff0080;
  }

  71.9% {
    transform: scale(1.06) rotate(-159.7deg) skew(-28.3deg, 75.4deg) translate(-29.6px, -84.4px);
    filter: hue-rotate(317.9deg) blur(3.7px) saturate(129%);
    opacity: 0.34;
    background: pink;
    text-shadow: -10px -29px 33px purple, 7px 19px 49px red, 30px 10px 32px magenta, 23px -10px 43px blue, -5px -18px 45px red, -15px -21px 12px red, -27px -21px 13px blue, -4px 30px 40px purple, -5px -23px 48px orange, -24px -17px 44px #ff0080;
  }

  72.0% {
    transform: scale(0.66) rotate(467.0deg) skew(-42.5deg, 5.0deg) translate(-61.8px, 74.5px);
    filter: hue-rotate(276.5deg) blur(4.8px) saturate(198%);
    opacity: 0.37;
    background: #ff0080;
    text-shadow: 14px 14px 45px red, -27px -16px 32px blue, -14px -7px 24px #ff0080, 12px 20px 42px red, -18px 4px 37px blue, 14px 25px 37px purple, -21px 19px 36px blue, -2px 22px 31px blue, 0px -9px 8px magenta, -22px 10px 14px lime;
  }

  72.1% {
    transform: scale(0.6) rotate(-8.0deg) skew(-65.6deg, 48.8deg) translate(-84.0px, 37.1px);
    filter: hue-rotate(191.3deg) blur(0.4px) saturate(211%);
    opacity: 0.44;
    background: #ff0080;
    text-shadow: 30px -2px 21px lime, 26px -5px 41px yellow, -11px -17px 37px pink, -7px 28px 18px magenta, 1px 16px 9px pink, 20px 25px 44px lime, 19px 0px 21px yellow, 22px -28px 21px cyan, -1px 9px 26px orange, -27px 4px 11px orange;
  }

  72.2% {
    transform: scale(1.81) rotate(438.1deg) skew(-88.9deg, 7.6deg) translate(42.9px, -23.7px);
    filter: hue-rotate(233.9deg) blur(1.2px) saturate(272%);
    opacity: 0.87;
    background: yellow;
    text-shadow: 10px -3px 50px #ff0080, 20px 1px 8px #ff0080, -17px -5px 27px magenta, -9px 30px 47px pink, -19px -13px 31px blue, -29px -11px 48px cyan, 8px -6px 33px pink, -6px 9px 34px orange, -15px -28px 21px lime, 11px -10px 11px blue;
  }

  72.3% {
    transform: scale(1.32) rotate(-695.8deg) skew(84.8deg, 27.1deg) translate(84.7px, -92.6px);
    filter: hue-rotate(287.5deg) blur(2.5px) saturate(196%);
    opacity: 0.76;
    background: pink;
    text-shadow: -11px -22px 20px orange, 24px -25px 14px yellow, -21px 18px 22px magenta, -5px -26px 38px magenta, -29px -16px 38px red, -26px 17px 28px magenta, -3px -16px 8px magenta, -15px -2px 10px #ff0080, 14px 0px 37px lime, -21px -17px 17px #ff0080;
  }

  72.4% {
    transform: scale(1.39) rotate(687.1deg) skew(37.6deg, -80.3deg) translate(16.9px, 12.4px);
    filter: hue-rotate(333.8deg) blur(8.6px) saturate(238%);
    opacity: 0.67;
    background: purple;
    text-shadow: -5px -17px 38px purple, 3px -26px 21px orange, 4px -26px 23px lime, 24px 7px 13px lime, -14px 28px 50px cyan, 17px 9px 19px purple, 8px -6px 23px pink, -2px 17px 18px #ff0080, -27px 18px 25px cyan, 7px 30px 33px blue;
  }

  72.5% {
    transform: scale(0.59) rotate(-477.9deg) skew(32.6deg, -88.3deg) translate(59.6px, -98.9px);
    filter: hue-rotate(164.6deg) blur(2.3px) saturate(221%);
    opacity: 0.63;
    background: purple;
    text-shadow: -20px -15px 37px orange, 10px -3px 49px lime, 26px -22px 39px orange, 7px 7px 17px pink, 20px 28px 21px pink, 26px -19px 45px pink, 2px -7px 9px cyan, -13px 17px 38px orange, 25px 24px 38px purple, 27px -4px 8px lime;
  }

  72.6% {
    transform: scale(0.6) rotate(140.7deg) skew(-44.4deg, 43.3deg) translate(-80.4px, -23.3px);
    filter: hue-rotate(269.3deg) blur(8.3px) saturate(143%);
    opacity: 0.96;
    background: pink;
    text-shadow: -16px -28px 26px #ff0080, 26px 13px 24px lime, 6px -12px 10px magenta, 11px 20px 31px cyan, 0px -30px 14px pink, 30px 5px 33px yellow, -25px 22px 27px pink, 28px -15px 39px pink, 21px -28px 26px red, -2px 12px 14px orange;
  }

  72.7% {
    transform: scale(1.79) rotate(102.8deg) skew(63.3deg, -38.3deg) translate(-22.4px, 77.4px);
    filter: hue-rotate(23.4deg) blur(0.4px) saturate(102%);
    opacity: 0.94;
    background: cyan;
    text-shadow: -22px 0px 23px lime, 25px 26px 41px lime, -22px 4px 12px red, -22px -23px 28px red, 13px -15px 10px yellow, -27px 14px 19px red, -9px -19px 24px magenta, 30px 11px 46px pink, -19px -18px 43px cyan, -4px -15px 25px cyan;
  }

  72.8% {
    transform: scale(0.98) rotate(509.0deg) skew(-29.0deg, 11.2deg) translate(-80.4px, 63.8px);
    filter: hue-rotate(9.9deg) blur(3.0px) saturate(187%);
    opacity: 0.57;
    background: cyan;
    text-shadow: 28px 11px 32px pink, 12px 23px 40px purple, -15px -3px 33px yellow, -7px -6px 46px #ff0080, 17px -7px 8px blue, 30px 9px 5px blue, 17px 10px 9px yellow, 27px -1px 15px #ff0080, -26px 12px 38px lime, 19px 13px 29px cyan;
  }

  72.9% {
    transform: scale(1.14) rotate(544.1deg) skew(-67.1deg, -33.9deg) translate(52.8px, 81.2px);
    filter: hue-rotate(238.1deg) blur(3.8px) saturate(298%);
    opacity: 0.65;
    background: red;
    text-shadow: -17px -3px 36px cyan, -5px 26px 14px magenta, -20px 19px 49px #ff0080, -21px 8px 48px cyan, 29px -18px 28px purple, -19px 2px 41px cyan, -5px 20px 17px purple, 27px -9px 36px purple, -23px -11px 50px magenta, -30px 0px 6px purple;
  }

  73.0% {
    transform: scale(1.98) rotate(-77.6deg) skew(-11.3deg, 78.2deg) translate(-47.2px, 83.9px);
    filter: hue-rotate(57.2deg) blur(3.9px) saturate(51%);
    opacity: 0.8;
    background: orange;
    text-shadow: 9px 13px 42px #ff0080, -29px -19px 6px orange, -18px 3px 48px cyan, 19px 19px 27px magenta, 20px 5px 26px blue, -25px 25px 43px lime, -5px 30px 36px yellow, 8px -22px 5px cyan, -16px 25px 14px #ff0080, -22px -27px 7px yellow;
  }

  73.1% {
    transform: scale(1.24) rotate(427.0deg) skew(-21.9deg, -6.3deg) translate(88.9px, -86.9px);
    filter: hue-rotate(83.6deg) blur(4.3px) saturate(192%);
    opacity: 0.78;
    background: cyan;
    text-shadow: -28px -18px 48px lime, -29px 9px 32px blue, -14px 20px 7px magenta, -15px 5px 7px pink, -6px 16px 37px pink, -14px 0px 6px cyan, 6px 0px 10px cyan, -11px -19px 44px lime, -1px -26px 48px magenta, -24px -12px 20px purple;
  }

  73.2% {
    transform: scale(0.84) rotate(-511.2deg) skew(-57.7deg, -53.2deg) translate(-47.8px, -99.7px);
    filter: hue-rotate(168.9deg) blur(6.1px) saturate(238%);
    opacity: 0.96;
    background: purple;
    text-shadow: 3px 8px 20px pink, 14px 11px 39px cyan, 15px 5px 24px cyan, 22px -9px 11px lime, 26px -17px 35px cyan, -5px -25px 19px orange, 4px 30px 22px yellow, 20px -4px 13px blue, -26px 7px 22px blue, 30px 28px 9px lime;
  }

  73.3% {
    transform: scale(1.97) rotate(-339.2deg) skew(74.3deg, 5.3deg) translate(-48.9px, 16.4px);
    filter: hue-rotate(240.5deg) blur(0.4px) saturate(97%);
    opacity: 0.67;
    background: yellow;
    text-shadow: -16px -12px 48px #ff0080, 4px -24px 37px pink, -12px -9px 34px pink, 4px -2px 40px #ff0080, -16px -25px 38px red, -27px -24px 9px orange, -19px 22px 35px cyan, -16px 2px 5px cyan, 28px 9px 44px #ff0080, -21px 30px 47px lime;
  }

  73.4% {
    transform: scale(1.25) rotate(-86.9deg) skew(43.5deg, 16.8deg) translate(-19.4px, -5.3px);
    filter: hue-rotate(138.2deg) blur(0.5px) saturate(135%);
    opacity: 0.72;
    background: red;
    text-shadow: 16px -30px 16px purple, 29px 19px 49px yellow, -13px 12px 44px magenta, 15px -8px 22px purple, 4px 12px 48px red, 17px 27px 10px magenta, -24px -18px 8px purple, 8px 4px 21px purple, -26px 22px 45px #ff0080, -8px -19px 49px magenta;
  }

  73.5% {
    transform: scale(0.99) rotate(-492.8deg) skew(31.0deg, -4.8deg) translate(15.6px, -76.4px);
    filter: hue-rotate(350.1deg) blur(6.5px) saturate(73%);
    opacity: 0.91;
    background: pink;
    text-shadow: 16px -11px 28px pink, -9px 10px 11px yellow, 7px 9px 34px lime, -20px -30px 34px cyan, 24px -3px 23px lime, -7px 22px 43px red, -7px -23px 16px orange, -14px 23px 49px cyan, 4px 14px 6px lime, -6px 1px 9px purple;
  }

  73.6% {
    transform: scale(1.75) rotate(-679.3deg) skew(-54.4deg, -67.4deg) translate(24.8px, 91.3px);
    filter: hue-rotate(263.1deg) blur(2.5px) saturate(90%);
    opacity: 0.61;
    background: magenta;
    text-shadow: 7px 22px 27px red, -23px 25px 11px purple, 30px 26px 6px orange, 10px -16px 35px lime, -17px 15px 18px orange, -13px -29px 47px #ff0080, -30px 19px 41px pink, -27px -19px 7px red, 28px -2px 34px cyan, -6px 17px 11px cyan;
  }

  73.7% {
    transform: scale(0.54) rotate(532.4deg) skew(44.9deg, -37.8deg) translate(97.2px, -94.4px);
    filter: hue-rotate(89.2deg) blur(0.6px) saturate(155%);
    opacity: 0.51;
    background: purple;
    text-shadow: 17px -22px 42px cyan, -5px 15px 25px yellow, 17px -16px 38px blue, 13px 8px 49px yellow, -2px -5px 29px orange, 28px -2px 14px pink, 14px -7px 25px cyan, 20px -24px 12px #ff0080, -24px 7px 16px blue, -15px 30px 46px blue;
  }

  73.8% {
    transform: scale(0.94) rotate(-97.2deg) skew(-5.1deg, -45.3deg) translate(-20.6px, 47.2px);
    filter: hue-rotate(35.9deg) blur(6.9px) saturate(199%);
    opacity: 0.83;
    background: blue;
    text-shadow: -24px 22px 17px magenta, 3px 1px 36px lime, 5px 11px 31px magenta, 8px 3px 45px yellow, 7px 27px 23px yellow, 15px -19px 10px orange, -12px -9px 31px lime, -4px 20px 14px #ff0080, -14px -6px 5px pink, 22px -27px 19px magenta;
  }

  73.9% {
    transform: scale(1.81) rotate(-321.7deg) skew(-63.7deg, 66.9deg) translate(12.6px, -78.8px);
    filter: hue-rotate(246.1deg) blur(5.2px) saturate(199%);
    opacity: 0.43;
    background: pink;
    text-shadow: -28px 18px 26px cyan, 17px 16px 44px lime, 20px 2px 36px orange, 26px -30px 6px purple, 11px 18px 25px yellow, -18px 2px 30px lime, 12px 11px 7px lime, -4px 14px 43px magenta, 13px 0px 46px orange, 29px 17px 24px cyan;
  }

  74.0% {
    transform: scale(1.8) rotate(617.7deg) skew(-12.7deg, -48.9deg) translate(-97.6px, -95.2px);
    filter: hue-rotate(69.2deg) blur(3.1px) saturate(271%);
    opacity: 0.37;
    background: blue;
    text-shadow: 4px 29px 32px purple, 13px 2px 26px purple, -22px 5px 27px orange, -24px -8px 17px magenta, 27px -15px 14px purple, -30px -5px 23px cyan, -17px 7px 32px orange, -13px 30px 20px lime, -5px -11px 25px pink, 16px -29px 7px blue;
  }

  74.1% {
    transform: scale(1.48) rotate(-324.5deg) skew(16.4deg, -2.8deg) translate(-20.0px, 77.0px);
    filter: hue-rotate(178.0deg) blur(7.7px) saturate(112%);
    opacity: 0.33;
    background: blue;
    text-shadow: 18px -3px 21px yellow, -13px -27px 50px #ff0080, -14px 15px 12px lime, 16px -4px 20px yellow, 15px 4px 29px magenta, -19px -2px 31px blue, -5px 24px 49px cyan, 17px 14px 9px yellow, -7px 3px 50px yellow, -4px -15px 13px red;
  }

  74.2% {
    transform: scale(1.68) rotate(-624.3deg) skew(-33.9deg, 46.2deg) translate(72.8px, -96.8px);
    filter: hue-rotate(170.6deg) blur(6.6px) saturate(272%);
    opacity: 0.94;
    background: red;
    text-shadow: -5px -25px 5px pink, 27px -27px 47px purple, -17px -17px 28px magenta, -19px -17px 21px magenta, 8px -1px 19px cyan, -19px 27px 32px red, 14px 15px 45px magenta, -30px -2px 13px lime, -5px -5px 15px pink, -2px 17px 9px lime;
  }

  74.3% {
    transform: scale(1.22) rotate(523.8deg) skew(9.5deg, 36.6deg) translate(38.1px, 82.9px);
    filter: hue-rotate(246.6deg) blur(4.6px) saturate(175%);
    opacity: 0.62;
    background: lime;
    text-shadow: 5px 29px 12px cyan, -24px -6px 42px #ff0080, 22px 25px 28px blue, -12px 27px 32px yellow, -12px 30px 50px lime, 8px 26px 16px cyan, 8px 15px 18px orange, -18px 5px 9px magenta, 26px 29px 7px orange, 23px 20px 8px red;
  }

  74.4% {
    transform: scale(1.84) rotate(-210.9deg) skew(26.6deg, 74.5deg) translate(83.9px, -46.5px);
    filter: hue-rotate(47.9deg) blur(9.7px) saturate(97%);
    opacity: 0.89;
    background: cyan;
    text-shadow: -2px 3px 10px yellow, -9px -24px 6px red, -3px -1px 31px magenta, -25px -2px 23px red, 23px -4px 43px lime, -27px -29px 20px blue, -26px -27px 36px red, -13px -21px 48px yellow, -8px 10px 44px red, 30px 13px 24px yellow;
  }

  74.5% {
    transform: scale(1.22) rotate(-197.6deg) skew(81.3deg, 89.5deg) translate(19.5px, -71.9px);
    filter: hue-rotate(77.0deg) blur(4.8px) saturate(208%);
    opacity: 0.57;
    background: red;
    text-shadow: 13px 10px 36px pink, -24px 14px 12px pink, -19px 16px 17px red, 12px 20px 7px blue, 12px 25px 7px lime, 27px 28px 34px orange, 8px -2px 11px lime, 30px 18px 50px lime, 25px -26px 31px purple, -13px 9px 34px lime;
  }

  74.6% {
    transform: scale(1.91) rotate(-604.2deg) skew(-17.6deg, 78.6deg) translate(-59.5px, -60.0px);
    filter: hue-rotate(306.4deg) blur(8.0px) saturate(78%);
    opacity: 0.5;
    background: orange;
    text-shadow: 10px -30px 5px magenta, 12px 29px 33px pink, 7px -6px 49px magenta, -30px -4px 25px magenta, -26px -29px 28px lime, -10px -30px 37px red, 14px -23px 25px yellow, -28px 10px 43px yellow, -6px -14px 8px yellow, -30px -19px 31px blue;
  }

  74.7% {
    transform: scale(1.11) rotate(641.0deg) skew(66.9deg, 41.9deg) translate(57.4px, 22.0px);
    filter: hue-rotate(56.2deg) blur(1.9px) saturate(126%);
    opacity: 0.82;
    background: #ff0080;
    text-shadow: 19px -2px 7px blue, 13px -13px 18px orange, 8px 9px 38px orange, 22px 5px 15px orange, -24px -28px 37px blue, 12px -23px 37px blue, 9px 20px 23px purple, -8px 19px 47px purple, -9px -18px 25px cyan, 23px -28px 33px red;
  }

  74.8% {
    transform: scale(1.47) rotate(515.3deg) skew(-77.4deg, -74.9deg) translate(-14.2px, -43.4px);
    filter: hue-rotate(165.3deg) blur(1.5px) saturate(182%);
    opacity: 0.59;
    background: purple;
    text-shadow: 26px 10px 28px #ff0080, -15px 22px 18px blue, 0px -23px 36px orange, 16px -26px 34px pink, -16px -11px 31px orange, -29px -13px 9px pink, -19px -27px 11px lime, 3px -10px 5px blue, 30px -7px 7px blue, 0px 9px 23px #ff0080;
  }

  74.9% {
    transform: scale(0.53) rotate(443.5deg) skew(20.9deg, -78.2deg) translate(48.6px, -98.5px);
    filter: hue-rotate(21.0deg) blur(1.4px) saturate(206%);
    opacity: 0.69;
    background: yellow;
    text-shadow: -27px 20px 32px pink, -5px -25px 18px magenta, 28px 10px 22px purple, 16px 20px 19px yellow, -27px 25px 5px blue, 5px -14px 16px blue, -9px 8px 40px red, -23px 4px 37px purple, -28px 29px 49px cyan, -11px -13px 30px purple;
  }

  75.0% {
    transform: scale(1.61) rotate(-344.4deg) skew(1.4deg, -28.9deg) translate(-61.2px, 63.8px);
    filter: hue-rotate(32.3deg) blur(8.8px) saturate(266%);
    opacity: 0.48;
    background: pink;
    text-shadow: -12px 22px 36px magenta, -8px 15px 45px #ff0080, 11px -29px 37px yellow, 27px 28px 39px blue, -19px 3px 28px blue, 22px 10px 41px yellow, -24px 24px 24px lime, -30px -21px 16px magenta, 0px 19px 14px red, -17px 3px 8px lime;
  }

  75.1% {
    transform: scale(0.97) rotate(187.7deg) skew(74.7deg, -55.1deg) translate(59.7px, -9.8px);
    filter: hue-rotate(75.8deg) blur(8.9px) saturate(215%);
    opacity: 0.74;
    background: yellow;
    text-shadow: -28px 22px 24px yellow, 17px 2px 11px red, -16px 25px 30px cyan, 16px -21px 5px #ff0080, 11px 14px 34px magenta, 29px 15px 10px lime, -29px -6px 44px red, 10px 18px 37px orange, 6px 0px 31px pink, -15px -28px 50px yellow;
  }

  75.2% {
    transform: scale(0.78) rotate(-244.5deg) skew(11.9deg, -29.8deg) translate(80.6px, 30.8px);
    filter: hue-rotate(186.5deg) blur(8.3px) saturate(263%);
    opacity: 0.41;
    background: yellow;
    text-shadow: -17px 11px 11px blue, 19px -12px 31px magenta, 16px -27px 15px lime, 1px -3px 44px pink, 27px -20px 16px red, 30px 22px 27px magenta, 19px -29px 19px blue, 16px -30px 14px red, 6px 21px 40px orange, -29px -6px 12px red;
  }

  75.3% {
    transform: scale(1.23) rotate(513.1deg) skew(34.4deg, -38.0deg) translate(-66.0px, 78.5px);
    filter: hue-rotate(235.9deg) blur(1.3px) saturate(97%);
    opacity: 0.64;
    background: blue;
    text-shadow: -28px -26px 32px pink, -3px -18px 23px orange, -26px -10px 40px lime, 4px -1px 46px yellow, -5px 29px 37px orange, 15px 7px 9px red, -25px -25px 28px lime, 21px 29px 38px cyan, 29px 29px 42px pink, -24px -2px 12px yellow;
  }

  75.4% {
    transform: scale(0.67) rotate(458.4deg) skew(46.6deg, -14.8deg) translate(-20.4px, -98.8px);
    filter: hue-rotate(299.7deg) blur(0.9px) saturate(173%);
    opacity: 0.79;
    background: orange;
    text-shadow: -13px -10px 25px pink, -17px -12px 21px cyan, 20px 19px 24px lime, -3px -20px 11px #ff0080, 19px 10px 44px blue, 25px 17px 22px yellow, 11px 23px 33px red, -24px -26px 13px pink, 19px -10px 21px orange, -11px -6px 11px yellow;
  }

  75.5% {
    transform: scale(1.63) rotate(-428.5deg) skew(-24.9deg, 52.4deg) translate(86.4px, -45.5px);
    filter: hue-rotate(267.4deg) blur(1.1px) saturate(125%);
    opacity: 0.35;
    background: magenta;
    text-shadow: -2px -27px 13px lime, 4px 0px 33px yellow, -26px 12px 14px red, -23px -21px 5px cyan, 10px -2px 45px magenta, 16px -24px 19px cyan, 30px -19px 44px yellow, 1px 3px 41px #ff0080, -4px -17px 11px purple, -10px -27px 46px blue;
  }

  75.6% {
    transform: scale(1.89) rotate(-437.6deg) skew(-67.8deg, -5.4deg) translate(46.0px, -27.9px);
    filter: hue-rotate(340.6deg) blur(0.5px) saturate(100%);
    opacity: 0.87;
    background: red;
    text-shadow: 22px 7px 29px purple, -7px 15px 12px red, 29px -14px 31px yellow, -22px -12px 11px orange, -1px 2px 44px blue, 12px -6px 36px #ff0080, 8px 30px 9px lime, 10px 19px 10px purple, -20px -13px 40px lime, 30px 27px 32px pink;
  }

  75.7% {
    transform: scale(0.67) rotate(-696.2deg) skew(55.0deg, 89.5deg) translate(72.9px, 6.0px);
    filter: hue-rotate(108.9deg) blur(2.3px) saturate(127%);
    opacity: 0.39;
    background: purple;
    text-shadow: 24px 12px 38px red, -4px -19px 43px red, -1px 28px 34px #ff0080, 1px 24px 24px cyan, 29px -22px 9px cyan, -24px 30px 39px yellow, -17px 22px 27px magenta, -25px 21px 43px blue, -2px -10px 28px lime, 5px 2px 11px orange;
  }

  75.8% {
    transform: scale(0.67) rotate(-491.2deg) skew(82.4deg, 69.8deg) translate(47.5px, -17.2px);
    filter: hue-rotate(25.9deg) blur(0.2px) saturate(247%);
    opacity: 0.76;
    background: blue;
    text-shadow: 23px 24px 25px cyan, 9px -14px 28px red, -22px -26px 23px blue, 6px 26px 45px purple, 17px 17px 6px magenta, -13px -30px 48px pink, 23px 4px 34px orange, -4px 15px 48px #ff0080, 12px 23px 21px magenta, -3px -7px 21px yellow;
  }

  75.9% {
    transform: scale(0.99) rotate(350.5deg) skew(-6.4deg, -77.3deg) translate(-26.5px, 66.9px);
    filter: hue-rotate(213.4deg) blur(4.6px) saturate(112%);
    opacity: 0.69;
    background: yellow;
    text-shadow: -28px -25px 14px red, -23px 18px 28px lime, -25px 4px 14px lime, 3px -30px 15px #ff0080, 22px 1px 24px pink, -15px -13px 24px lime, -24px 1px 49px pink, 15px -14px 27px lime, -14px 3px 22px blue, 19px 20px 18px pink;
  }

  76.0% {
    transform: scale(1.94) rotate(285.5deg) skew(-73.2deg, 27.1deg) translate(32.3px, 0.6px);
    filter: hue-rotate(204.7deg) blur(5.6px) saturate(122%);
    opacity: 0.83;
    background: yellow;
    text-shadow: -12px 16px 8px yellow, -2px -10px 44px red, -13px 30px 30px #ff0080, 29px 28px 15px yellow, -27px 13px 21px orange, -13px 15px 13px #ff0080, -13px -2px 19px pink, 20px -6px 50px #ff0080, -5px 29px 16px pink, 17px 8px 21px cyan;
  }

  76.1% {
    transform: scale(0.65) rotate(18.1deg) skew(42.6deg, 47.6deg) translate(37.9px, -19.6px);
    filter: hue-rotate(101.4deg) blur(0.7px) saturate(171%);
    opacity: 0.69;
    background: yellow;
    text-shadow: -12px 21px 19px yellow, 25px -19px 44px lime, -7px -15px 35px yellow, 30px -28px 6px blue, 7px 5px 50px yellow, 11px 14px 28px cyan, 25px -25px 50px cyan, 13px -14px 26px red, -12px 3px 8px purple, 5px -18px 27px yellow;
  }

  76.2% {
    transform: scale(0.73) rotate(68.1deg) skew(71.2deg, 31.5deg) translate(-64.4px, 6.3px);
    filter: hue-rotate(243.0deg) blur(7.3px) saturate(281%);
    opacity: 0.39;
    background: #ff0080;
    text-shadow: -16px -28px 36px pink, -21px 8px 6px yellow, 27px -12px 49px purple, -16px -25px 45px orange, 14px 23px 39px red, 7px -11px 19px red, -8px -9px 36px orange, -9px -27px 26px blue, -20px -26px 26px pink, 22px -4px 15px red;
  }

  76.3% {
    transform: scale(1.97) rotate(153.6deg) skew(72.2deg, 49.8deg) translate(-24.6px, 63.8px);
    filter: hue-rotate(241.4deg) blur(4.5px) saturate(284%);
    opacity: 0.85;
    background: purple;
    text-shadow: 4px 23px 33px cyan, 17px 15px 38px yellow, 1px 11px 30px lime, -16px 0px 9px cyan, -10px 5px 45px orange, -15px -24px 5px orange, 30px -2px 45px yellow, -11px -23px 19px magenta, 0px -3px 5px red, 27px -26px 8px yellow;
  }

  76.4% {
    transform: scale(1.83) rotate(-629.0deg) skew(50.8deg, -82.2deg) translate(-21.5px, -88.9px);
    filter: hue-rotate(70.8deg) blur(1.3px) saturate(275%);
    opacity: 0.76;
    background: blue;
    text-shadow: -25px 2px 26px blue, 30px -26px 31px cyan, 7px -5px 48px yellow, -26px 18px 17px #ff0080, 2px 17px 24px pink, 24px -12px 6px orange, 15px -18px 34px orange, 4px 29px 24px magenta, 10px 23px 34px magenta, -9px -1px 27px lime;
  }

  76.5% {
    transform: scale(0.56) rotate(-588.1deg) skew(-61.4deg, 81.3deg) translate(-23.8px, -97.4px);
    filter: hue-rotate(283.2deg) blur(8.4px) saturate(107%);
    opacity: 0.45;
    background: orange;
    text-shadow: -10px 11px 12px lime, -5px 5px 8px pink, -27px -12px 9px purple, -12px 16px 42px magenta, 29px -1px 26px #ff0080, -15px -12px 50px magenta, -6px 12px 44px yellow, -12px -16px 33px yellow, -3px 5px 45px blue, -2px 7px 29px red;
  }

  76.6% {
    transform: scale(0.81) rotate(-418.6deg) skew(-34.1deg, -81.5deg) translate(-24.7px, 2.7px);
    filter: hue-rotate(331.4deg) blur(9.3px) saturate(278%);
    opacity: 0.48;
    background: cyan;
    text-shadow: 5px -7px 49px lime, -14px 18px 38px purple, -5px -4px 23px orange, -21px 1px 8px cyan, 19px 7px 49px lime, 15px 28px 44px blue, -2px -11px 49px yellow, -11px 19px 15px cyan, 11px 16px 20px lime, -22px -3px 10px #ff0080;
  }

  76.7% {
    transform: scale(1.61) rotate(107.2deg) skew(76.7deg, -34.2deg) translate(-97.8px, 43.0px);
    filter: hue-rotate(314.2deg) blur(5.0px) saturate(258%);
    opacity: 0.56;
    background: orange;
    text-shadow: -12px 25px 11px purple, -3px 26px 50px blue, -4px 27px 34px purple, 0px -9px 19px cyan, -4px -10px 19px #ff0080, -12px -1px 40px blue, 2px 6px 41px orange, -13px 15px 41px cyan, 13px 29px 5px purple, 1px 28px 36px purple;
  }

  76.8% {
    transform: scale(1.56) rotate(175.2deg) skew(-72.9deg, -7.7deg) translate(52.9px, -8.3px);
    filter: hue-rotate(42.8deg) blur(2.6px) saturate(220%);
    opacity: 0.83;
    background: #ff0080;
    text-shadow: -12px 17px 28px orange, 6px 9px 26px #ff0080, -25px -30px 43px blue, 2px -23px 6px pink, 30px -18px 45px cyan, -23px 19px 7px pink, -23px -20px 25px lime, 5px -11px 32px pink, 6px 29px 5px pink, 27px 19px 27px magenta;
  }

  76.9% {
    transform: scale(0.59) rotate(672.2deg) skew(-9.0deg, 34.7deg) translate(7.7px, -75.4px);
    filter: hue-rotate(87.8deg) blur(2.0px) saturate(189%);
    opacity: 0.8;
    background: orange;
    text-shadow: 1px -4px 25px yellow, 20px 17px 8px cyan, 21px -23px 12px pink, -27px -14px 48px magenta, 28px 29px 6px pink, 8px -4px 45px #ff0080, 10px -22px 41px #ff0080, 1px 2px 24px lime, -2px -16px 49px pink, -19px -4px 25px yellow;
  }

  77.0% {
    transform: scale(1.18) rotate(625.2deg) skew(-63.2deg, -33.0deg) translate(-42.0px, -74.0px);
    filter: hue-rotate(156.9deg) blur(0.7px) saturate(158%);
    opacity: 0.77;
    background: blue;
    text-shadow: -9px -24px 29px #ff0080, -2px -19px 16px purple, 8px -8px 6px magenta, 26px -18px 35px #ff0080, -23px -12px 37px pink, 15px -9px 29px red, -24px -5px 18px #ff0080, -28px -28px 10px blue, -19px -30px 30px red, 0px 29px 18px orange;
  }

  77.1% {
    transform: scale(1.85) rotate(469.0deg) skew(-18.0deg, -53.7deg) translate(-44.1px, -91.7px);
    filter: hue-rotate(316.1deg) blur(6.9px) saturate(222%);
    opacity: 0.64;
    background: red;
    text-shadow: -4px -8px 27px cyan, -1px 1px 34px cyan, 13px 26px 42px cyan, -27px 13px 21px magenta, -1px -20px 10px orange, 21px -8px 22px cyan, -9px 0px 36px lime, 8px 30px 11px red, -8px 24px 10px orange, -17px 28px 12px #ff0080;
  }

  77.2% {
    transform: scale(1.76) rotate(-399.7deg) skew(27.9deg, 8.6deg) translate(-82.9px, 85.2px);
    filter: hue-rotate(239.5deg) blur(0.8px) saturate(158%);
    opacity: 0.44;
    background: orange;
    text-shadow: 0px 0px 36px yellow, 30px 23px 12px orange, -11px 17px 19px red, 19px 5px 16px purple, 26px 6px 12px purple, -5px -21px 40px orange, -24px -19px 34px purple, -14px 9px 33px orange, 3px 8px 19px #ff0080, -9px 6px 8px purple;
  }

  77.3% {
    transform: scale(0.98) rotate(364.5deg) skew(37.0deg, 76.2deg) translate(8.4px, -6.2px);
    filter: hue-rotate(256.7deg) blur(0.0px) saturate(127%);
    opacity: 0.79;
    background: orange;
    text-shadow: -25px 12px 22px lime, -27px -20px 31px pink, 15px -25px 12px red, -19px -15px 50px cyan, -13px -2px 49px pink, -24px 23px 5px pink, 17px -23px 28px magenta, 30px 18px 46px blue, -11px -4px 41px blue, 12px -18px 37px pink;
  }

  77.4% {
    transform: scale(1.06) rotate(636.3deg) skew(-34.7deg, -65.0deg) translate(27.4px, -51.7px);
    filter: hue-rotate(193.3deg) blur(3.1px) saturate(74%);
    opacity: 0.91;
    background: lime;
    text-shadow: -6px -26px 17px blue, 24px 24px 8px cyan, -25px -14px 12px orange, 26px -26px 39px lime, -21px -26px 11px yellow, -12px 27px 15px red, 23px 9px 27px lime, 16px 2px 8px pink, 3px 26px 33px #ff0080, 28px 24px 9px lime;
  }

  77.5% {
    transform: scale(0.59) rotate(-185.7deg) skew(-45.0deg, 45.9deg) translate(-34.4px, 39.7px);
    filter: hue-rotate(252.3deg) blur(2.2px) saturate(73%);
    opacity: 0.87;
    background: orange;
    text-shadow: -13px -27px 8px magenta, 7px -12px 34px purple, -15px -13px 45px pink, -4px 11px 21px pink, -17px 15px 14px pink, -24px -10px 8px orange, 9px 25px 48px cyan, -17px -5px 8px pink, 12px 22px 22px yellow, 24px 13px 36px cyan;
  }

  77.6% {
    transform: scale(1.42) rotate(5.3deg) skew(58.3deg, 3.7deg) translate(7.0px, -72.3px);
    filter: hue-rotate(161.9deg) blur(5.1px) saturate(291%);
    opacity: 0.95;
    background: blue;
    text-shadow: 6px 5px 10px orange, -16px 25px 21px yellow, -7px -4px 35px magenta, 15px 19px 28px #ff0080, 15px 20px 37px #ff0080, -11px -25px 43px pink, 7px -23px 19px pink, -2px 8px 29px lime, -17px 7px 18px blue, -13px -5px 9px purple;
  }

  77.7% {
    transform: scale(1.29) rotate(559.0deg) skew(-71.7deg, 40.1deg) translate(-59.1px, 85.9px);
    filter: hue-rotate(178.2deg) blur(6.0px) saturate(75%);
    opacity: 0.58;
    background: pink;
    text-shadow: -1px 0px 36px cyan, 2px -8px 13px lime, -3px -19px 18px blue, -22px -26px 23px magenta, -26px 24px 18px yellow, 30px 21px 6px purple, 10px -19px 21px #ff0080, -26px -7px 45px pink, -17px -17px 24px yellow, -18px -8px 43px yellow;
  }

  77.8% {
    transform: scale(0.57) rotate(392.9deg) skew(68.2deg, -65.2deg) translate(-36.3px, -70.0px);
    filter: hue-rotate(126.3deg) blur(3.5px) saturate(159%);
    opacity: 0.87;
    background: yellow;
    text-shadow: -9px 0px 28px red, -26px 6px 9px red, -24px -10px 12px yellow, 2px -19px 13px red, -1px 27px 49px yellow, -12px -10px 14px magenta, 22px 0px 30px cyan, -25px 12px 30px cyan, -8px 16px 29px pink, 23px -30px 29px magenta;
  }

  77.9% {
    transform: scale(1.41) rotate(-354.6deg) skew(-49.7deg, -81.0deg) translate(51.6px, 46.0px);
    filter: hue-rotate(342.7deg) blur(3.9px) saturate(60%);
    opacity: 0.56;
    background: yellow;
    text-shadow: 12px -19px 35px #ff0080, -9px -13px 22px red, 20px -8px 39px blue, 3px 28px 40px cyan, 20px 1px 29px pink, -29px 5px 32px #ff0080, -17px -25px 11px pink, 10px 20px 44px blue, 26px 11px 14px blue, 13px -9px 10px purple;
  }

  78.0% {
    transform: scale(1.88) rotate(203.0deg) skew(0.6deg, -69.4deg) translate(0.4px, -52.9px);
    filter: hue-rotate(75.3deg) blur(6.8px) saturate(80%);
    opacity: 0.67;
    background: magenta;
    text-shadow: 4px 19px 34px purple, 3px -14px 20px pink, -17px -26px 41px orange, 14px 16px 50px red, -1px 12px 41px pink, 3px 9px 23px purple, -23px -10px 27px red, 20px -18px 11px purple, -16px 5px 32px pink, -24px 14px 29px blue;
  }

  78.1% {
    transform: scale(1.93) rotate(-513.8deg) skew(23.5deg, -10.2deg) translate(6.4px, -89.3px);
    filter: hue-rotate(158.5deg) blur(3.1px) saturate(85%);
    opacity: 0.83;
    background: blue;
    text-shadow: -5px 28px 49px red, -10px 28px 26px cyan, -22px -20px 13px blue, 19px -22px 17px yellow, 22px 23px 45px red, 19px 27px 23px magenta, -8px 24px 20px yellow, 13px -14px 30px purple, 26px 28px 21px #ff0080, 1px -8px 45px orange;
  }

  78.2% {
    transform: scale(0.98) rotate(231.6deg) skew(-2.8deg, -41.0deg) translate(40.0px, -88.5px);
    filter: hue-rotate(342.6deg) blur(4.2px) saturate(77%);
    opacity: 0.56;
    background: pink;
    text-shadow: 16px 19px 7px blue, -14px 30px 40px #ff0080, -12px 10px 18px pink, -14px 3px 7px magenta, -29px -4px 29px yellow, -18px -27px 7px purple, -8px 6px 19px yellow, 2px 13px 38px yellow, 0px -19px 49px lime, 1px -24px 50px yellow;
  }

  78.3% {
    transform: scale(1.04) rotate(-149.3deg) skew(-26.8deg, 82.1deg) translate(-84.2px, -55.8px);
    filter: hue-rotate(292.5deg) blur(4.6px) saturate(291%);
    opacity: 0.59;
    background: #ff0080;
    text-shadow: 30px 19px 30px lime, -7px 14px 19px #ff0080, -24px -21px 45px yellow, 12px 29px 19px red, 4px 12px 32px orange, 6px 15px 27px purple, -26px 9px 44px orange, -7px 4px 41px pink, 7px -18px 28px red, 11px 6px 42px blue;
  }

  78.4% {
    transform: scale(0.98) rotate(539.4deg) skew(-57.9deg, -29.2deg) translate(-54.3px, 73.6px);
    filter: hue-rotate(235.6deg) blur(5.5px) saturate(162%);
    opacity: 0.94;
    background: blue;
    text-shadow: 3px 12px 50px #ff0080, 18px -30px 45px lime, 27px -1px 15px yellow, 19px -1px 25px red, -4px 30px 38px pink, 9px 29px 9px pink, 6px 3px 8px yellow, -3px 25px 21px orange, -14px -16px 10px red, -3px -19px 27px pink;
  }

  78.5% {
    transform: scale(0.69) rotate(553.5deg) skew(15.7deg, -21.4deg) translate(35.4px, 90.1px);
    filter: hue-rotate(184.8deg) blur(1.8px) saturate(118%);
    opacity: 0.87;
    background: purple;
    text-shadow: -6px 1px 29px yellow, -9px 6px 27px cyan, -22px -1px 12px pink, -7px 28px 29px lime, 29px -26px 47px purple, 11px 1px 29px purple, -12px 9px 42px magenta, -17px -28px 14px purple, -14px -9px 9px pink, -16px 13px 50px purple;
  }

  78.6% {
    transform: scale(1.45) rotate(456.2deg) skew(65.7deg, -35.9deg) translate(-26.9px, -52.4px);
    filter: hue-rotate(90.2deg) blur(8.4px) saturate(92%);
    opacity: 0.4;
    background: #ff0080;
    text-shadow: -27px 27px 38px magenta, 29px -5px 13px #ff0080, 11px 13px 33px pink, -5px -9px 44px blue, 4px 16px 29px purple, 25px 4px 32px cyan, 22px -22px 11px blue, 10px 13px 27px orange, 8px 10px 25px magenta, 22px -23px 18px lime;
  }

  78.7% {
    transform: scale(1.87) rotate(-551.6deg) skew(0.2deg, -71.2deg) translate(-39.2px, 16.0px);
    filter: hue-rotate(18.1deg) blur(4.7px) saturate(161%);
    opacity: 0.46;
    background: pink;
    text-shadow: -11px 16px 19px yellow, -23px -19px 9px blue, -28px -26px 35px orange, 12px -17px 16px magenta, -4px 18px 32px magenta, -22px 26px 19px magenta, -26px 2px 47px #ff0080, -15px -5px 37px pink, -26px -25px 44px orange, 0px -19px 42px pink;
  }

  78.8% {
    transform: scale(0.92) rotate(619.7deg) skew(-23.1deg, 74.5deg) translate(-16.9px, 16.7px);
    filter: hue-rotate(340.4deg) blur(4.8px) saturate(197%);
    opacity: 0.79;
    background: red;
    text-shadow: 24px -29px 38px red, -30px -11px 29px lime, -28px 22px 38px yellow, -9px -11px 42px orange, -13px 23px 35px red, 26px 17px 7px magenta, -15px -18px 46px pink, -4px -20px 43px cyan, -21px -19px 28px cyan, -25px -11px 36px orange;
  }

  78.9% {
    transform: scale(1.55) rotate(-415.6deg) skew(87.1deg, -14.8deg) translate(84.2px, -55.8px);
    filter: hue-rotate(295.8deg) blur(2.6px) saturate(134%);
    opacity: 0.91;
    background: #ff0080;
    text-shadow: -11px -3px 50px magenta, -10px -11px 35px lime, 26px -7px 46px magenta, 20px 18px 25px blue, -12px -11px 42px purple, -11px 20px 22px blue, 4px -5px 37px magenta, 21px 16px 11px purple, -19px -1px 18px yellow, 3px -4px 34px pink;
  }

  79.0% {
    transform: scale(1.03) rotate(634.7deg) skew(-52.0deg, 39.4deg) translate(32.5px, -54.4px);
    filter: hue-rotate(351.6deg) blur(3.2px) saturate(264%);
    opacity: 0.37;
    background: #ff0080;
    text-shadow: 6px -23px 30px yellow, 3px -14px 38px pink, 16px 16px 6px orange, 28px 9px 31px #ff0080, 21px -5px 30px red, -27px 3px 33px purple, 27px 13px 40px red, 13px -4px 16px #ff0080, 0px -7px 49px purple, 23px 3px 26px orange;
  }

  79.1% {
    transform: scale(0.6) rotate(-549.5deg) skew(-12.3deg, -68.4deg) translate(11.7px, 52.5px);
    filter: hue-rotate(113.3deg) blur(6.8px) saturate(67%);
    opacity: 0.4;
    background: red;
    text-shadow: 28px 21px 5px magenta, 10px -15px 20px orange, 5px 21px 28px #ff0080, 12px -9px 10px red, -4px -13px 30px magenta, -5px 26px 7px cyan, 11px 17px 19px purple, -29px -2px 19px magenta, -17px -3px 7px pink, 25px -26px 28px orange;
  }

  79.2% {
    transform: scale(1.88) rotate(-527.7deg) skew(70.6deg, 19.9deg) translate(-41.0px, 17.6px);
    filter: hue-rotate(151.7deg) blur(8.6px) saturate(275%);
    opacity: 0.43;
    background: cyan;
    text-shadow: -6px 12px 10px red, -12px 10px 32px pink, 12px -27px 48px blue, -10px -18px 42px cyan, -17px 15px 22px #ff0080, 24px -5px 46px #ff0080, -7px -10px 16px lime, 17px 24px 17px purple, -27px -13px 20px orange, -17px -26px 17px blue;
  }

  79.3% {
    transform: scale(1.94) rotate(-437.1deg) skew(-70.3deg, -67.6deg) translate(67.0px, -89.5px);
    filter: hue-rotate(313.8deg) blur(1.8px) saturate(178%);
    opacity: 0.8;
    background: cyan;
    text-shadow: 6px -4px 29px blue, -17px 29px 25px red, 6px 23px 43px orange, -20px -12px 9px red, -11px -18px 10px magenta, 13px 8px 48px cyan, -9px 16px 21px orange, 11px 6px 47px lime, 17px 9px 46px lime, 25px 9px 41px purple;
  }

  79.4% {
    transform: scale(1.01) rotate(583.3deg) skew(-63.1deg, -38.6deg) translate(-49.9px, -1.2px);
    filter: hue-rotate(19.2deg) blur(7.3px) saturate(289%);
    opacity: 0.94;
    background: lime;
    text-shadow: -13px -3px 37px cyan, -27px -11px 31px pink, -10px 13px 34px red, 21px 12px 8px blue, 25px 3px 32px red, -23px 8px 44px cyan, -26px -18px 22px #ff0080, -11px -21px 12px yellow, 23px -4px 8px lime, -6px -17px 12px cyan;
  }

  79.5% {
    transform: scale(0.59) rotate(-202.6deg) skew(40.5deg, -85.8deg) translate(-95.1px, 75.0px);
    filter: hue-rotate(97.7deg) blur(6.3px) saturate(106%);
    opacity: 0.46;
    background: red;
    text-shadow: 8px 0px 18px blue, 17px -24px 31px pink, -16px -29px 20px pink, 7px 13px 28px #ff0080, -22px 25px 39px cyan, -12px -7px 34px lime, 12px -10px 38px yellow, -23px 7px 9px purple, 12px -10px 19px blue, -10px -30px 35px red;
  }

  79.6% {
    transform: scale(0.68) rotate(687.4deg) skew(39.0deg, -37.0deg) translate(-45.2px, 70.1px);
    filter: hue-rotate(332.4deg) blur(3.5px) saturate(254%);
    opacity: 0.42;
    background: #ff0080;
    text-shadow: -17px -16px 50px lime, 16px 2px 14px cyan, 18px 1px 19px yellow, -24px -25px 8px magenta, 11px 10px 38px orange, 25px 30px 28px blue, 0px 1px 42px orange, -28px -22px 30px purple, -11px 17px 24px blue, -9px -10px 32px orange;
  }

  79.7% {
    transform: scale(0.77) rotate(548.1deg) skew(-77.0deg, 3.9deg) translate(63.7px, 14.3px);
    filter: hue-rotate(65.5deg) blur(6.5px) saturate(193%);
    opacity: 0.89;
    background: red;
    text-shadow: -14px -28px 48px yellow, -24px -25px 23px red, 1px -12px 18px cyan, 26px 23px 36px lime, -24px -2px 31px purple, -10px 7px 32px cyan, -4px 3px 14px #ff0080, 0px -12px 46px blue, -15px 16px 38px red, -4px -22px 34px purple;
  }

  79.8% {
    transform: scale(1.7) rotate(-681.6deg) skew(75.1deg, -32.7deg) translate(1.7px, -78.2px);
    filter: hue-rotate(276.5deg) blur(1.0px) saturate(209%);
    opacity: 0.68;
    background: blue;
    text-shadow: 10px 24px 10px orange, -22px -29px 18px blue, -9px -18px 19px cyan, 23px -26px 50px red, 3px -25px 20px orange, 28px -29px 17px purple, -26px -1px 11px orange, -12px 0px 7px red, -5px 23px 16px cyan, -20px 23px 28px blue;
  }

  79.9% {
    transform: scale(0.62) rotate(298.3deg) skew(-39.4deg, -61.8deg) translate(-56.4px, -8.5px);
    filter: hue-rotate(241.3deg) blur(9.1px) saturate(72%);
    opacity: 0.73;
    background: pink;
    text-shadow: 7px 27px 29px lime, -11px 17px 42px pink, 23px -30px 23px lime, 5px 19px 35px magenta, -21px 23px 40px purple, 8px -5px 50px cyan, -2px -1px 22px #ff0080, 5px 27px 46px pink, 12px -20px 50px blue, 26px -6px 22px pink;
  }

  80.0% {
    transform: scale(1.61) rotate(-474.3deg) skew(-68.2deg, -34.4deg) translate(16.8px, -50.8px);
    filter: hue-rotate(330.5deg) blur(7.2px) saturate(220%);
    opacity: 0.9;
    background: magenta;
    text-shadow: 15px 22px 7px purple, -11px 29px 46px lime, 12px -30px 36px lime, 26px 9px 30px cyan, -9px 14px 19px red, -17px 1px 11px lime, -16px -19px 28px orange, 13px 15px 23px yellow, 13px 22px 44px yellow, -20px 30px 7px #ff0080;
  }

  80.1% {
    transform: scale(1.04) rotate(-92.9deg) skew(-8.9deg, -10.3deg) translate(62.7px, -27.8px);
    filter: hue-rotate(178.2deg) blur(2.1px) saturate(175%);
    opacity: 0.45;
    background: purple;
    text-shadow: 3px 27px 41px cyan, -22px 26px 41px #ff0080, 18px -10px 33px pink, 7px -15px 24px red, 30px 16px 30px #ff0080, 14px 16px 18px purple, -18px 22px 31px red, -23px -1px 20px red, -5px -17px 21px magenta, -14px -3px 14px lime;
  }

  80.2% {
    transform: scale(1.21) rotate(636.7deg) skew(88.9deg, -59.6deg) translate(-29.1px, 36.6px);
    filter: hue-rotate(221.0deg) blur(6.9px) saturate(201%);
    opacity: 0.89;
    background: pink;
    text-shadow: 20px -5px 39px pink, -27px 7px 15px purple, -5px -9px 9px orange, -30px -5px 50px purple, 17px 6px 19px yellow, 24px 15px 30px blue, -25px -25px 19px cyan, 26px -11px 19px cyan, 28px 6px 14px purple, 14px -2px 7px yellow;
  }

  80.3% {
    transform: scale(0.91) rotate(-54.9deg) skew(69.8deg, 20.7deg) translate(-1.3px, -14.5px);
    filter: hue-rotate(28.2deg) blur(5.4px) saturate(121%);
    opacity: 0.45;
    background: #ff0080;
    text-shadow: -19px 26px 11px purple, 5px -8px 43px blue, 2px -21px 25px orange, 0px 26px 46px pink, -14px -1px 10px purple, -29px -29px 49px lime, 26px 22px 50px lime, 7px 18px 16px #ff0080, -21px 14px 18px magenta, -27px -22px 32px #ff0080;
  }

  80.4% {
    transform: scale(1.69) rotate(-8.0deg) skew(-81.8deg, 8.7deg) translate(99.1px, 45.4px);
    filter: hue-rotate(294.4deg) blur(3.8px) saturate(233%);
    opacity: 0.91;
    background: magenta;
    text-shadow: -16px -26px 48px magenta, -12px -15px 11px blue, -18px 11px 47px orange, -14px -4px 40px red, -14px -1px 37px #ff0080, 10px 7px 25px cyan, -21px 3px 41px blue, 8px -11px 23px pink, 26px 7px 29px purple, 11px -4px 34px lime;
  }

  80.5% {
    transform: scale(0.89) rotate(430.6deg) skew(39.5deg, -26.5deg) translate(31.1px, -43.3px);
    filter: hue-rotate(101.1deg) blur(6.9px) saturate(120%);
    opacity: 0.74;
    background: lime;
    text-shadow: 15px 12px 27px #ff0080, 9px -11px 14px purple, 10px 28px 13px lime, -22px 12px 44px red, -27px 12px 20px pink, 1px 29px 36px red, 17px -4px 29px lime, -28px 18px 38px lime, 6px 5px 10px lime, -23px -13px 45px yellow;
  }

  80.6% {
    transform: scale(1.66) rotate(-10.1deg) skew(86.1deg, -68.8deg) translate(-67.2px, 12.1px);
    filter: hue-rotate(153.7deg) blur(5.5px) saturate(118%);
    opacity: 0.63;
    background: #ff0080;
    text-shadow: -29px 24px 20px lime, -6px -24px 32px lime, 2px -7px 40px purple, -16px -11px 38px magenta, -16px 30px 15px cyan, -3px -8px 5px red, 30px -25px 40px magenta, -3px 26px 32px yellow, -29px 22px 6px yellow, -5px 16px 17px #ff0080;
  }

  80.7% {
    transform: scale(0.55) rotate(-92.9deg) skew(12.5deg, -55.7deg) translate(-67.7px, -2.7px);
    filter: hue-rotate(155.2deg) blur(3.8px) saturate(222%);
    opacity: 0.61;
    background: pink;
    text-shadow: -9px -11px 9px orange, -5px 5px 17px red, 10px -3px 22px #ff0080, -25px -28px 44px blue, 16px -24px 7px orange, 27px 19px 14px orange, 0px 19px 14px pink, 22px -13px 20px red, 8px 2px 46px red, 25px -29px 13px yellow;
  }

  80.8% {
    transform: scale(1.0) rotate(-655.1deg) skew(-20.8deg, -42.2deg) translate(-81.7px, 23.4px);
    filter: hue-rotate(9.5deg) blur(7.0px) saturate(88%);
    opacity: 0.35;
    background: purple;
    text-shadow: -18px -14px 25px blue, -28px 1px 38px pink, 6px 2px 33px pink, 5px -5px 20px blue, 6px 13px 44px lime, -28px -4px 42px cyan, 10px 11px 14px red, 3px 13px 35px yellow, -20px -15px 38px lime, -20px -21px 30px #ff0080;
  }

  80.9% {
    transform: scale(0.58) rotate(196.4deg) skew(-42.6deg, 83.2deg) translate(-50.9px, -25.0px);
    filter: hue-rotate(93.4deg) blur(9.6px) saturate(56%);
    opacity: 0.92;
    background: magenta;
    text-shadow: 0px -13px 15px purple, 14px -28px 40px purple, 18px 24px 41px magenta, 3px 16px 24px purple, 17px 2px 10px orange, 15px -3px 16px pink, -26px 19px 8px lime, 14px -5px 6px blue, -13px 18px 39px cyan, -28px 2px 45px purple;
  }

  81.0% {
    transform: scale(0.57) rotate(-101.5deg) skew(-60.2deg, 10.7deg) translate(-72.6px, 66.5px);
    filter: hue-rotate(266.3deg) blur(4.9px) saturate(167%);
    opacity: 0.32;
    background: orange;
    text-shadow: -12px 25px 50px orange, 14px -1px 43px pink, -17px -2px 14px yellow, -4px 11px 5px purple, -23px -20px 6px purple, 18px -18px 45px #ff0080, 5px 7px 27px cyan, -5px -11px 36px cyan, -13px -5px 13px orange, -21px 0px 10px cyan;
  }

  81.1% {
    transform: scale(0.97) rotate(-163.7deg) skew(62.4deg, 47.8deg) translate(-14.0px, -8.2px);
    filter: hue-rotate(57.1deg) blur(1.0px) saturate(300%);
    opacity: 0.88;
    background: pink;
    text-shadow: 11px -10px 9px orange, -19px 15px 32px purple, 26px -19px 9px lime, -26px 23px 35px magenta, -3px 22px 23px lime, 2px -30px 15px purple, -29px -10px 6px blue, -29px 3px 40px blue, -16px -23px 47px lime, -5px -28px 45px cyan;
  }

  81.2% {
    transform: scale(1.36) rotate(-587.9deg) skew(40.4deg, 78.4deg) translate(-95.3px, 29.1px);
    filter: hue-rotate(135.3deg) blur(9.5px) saturate(129%);
    opacity: 0.53;
    background: pink;
    text-shadow: 15px -29px 26px cyan, 21px 0px 20px purple, 4px -6px 37px red, -9px -29px 15px lime, -11px 20px 32px #ff0080, -22px 9px 17px lime, 4px -28px 32px blue, 26px 23px 26px magenta, 30px 16px 18px red, 2px -6px 8px #ff0080;
  }

  81.3% {
    transform: scale(0.5) rotate(-684.7deg) skew(41.0deg, -65.1deg) translate(90.3px, -21.5px);
    filter: hue-rotate(222.3deg) blur(4.8px) saturate(109%);
    opacity: 0.67;
    background: pink;
    text-shadow: -1px 28px 19px red, 5px -7px 12px cyan, 23px -12px 25px orange, 24px 13px 46px cyan, -20px 20px 44px red, 15px -18px 38px cyan, 23px -4px 44px red, -26px 15px 14px red, 5px -25px 24px cyan, 12px 20px 21px magenta;
  }

  81.4% {
    transform: scale(1.34) rotate(-378.8deg) skew(-19.3deg, -72.3deg) translate(56.4px, -70.5px);
    filter: hue-rotate(294.2deg) blur(4.5px) saturate(175%);
    opacity: 0.95;
    background: magenta;
    text-shadow: 7px -7px 18px lime, -3px 8px 13px magenta, 7px -19px 10px purple, 1px -1px 14px lime, 19px 11px 47px pink, 21px 6px 41px red, 11px -26px 47px purple, 3px 18px 13px magenta, -25px -3px 6px red, -7px 14px 47px cyan;
  }

  81.5% {
    transform: scale(0.86) rotate(-185.8deg) skew(-4.9deg, -46.0deg) translate(-65.8px, 1.0px);
    filter: hue-rotate(218.2deg) blur(1.5px) saturate(298%);
    opacity: 0.36;
    background: lime;
    text-shadow: 9px -19px 20px yellow, 4px 7px 40px magenta, -18px 8px 42px red, 27px 20px 7px orange, 22px -19px 41px cyan, 17px -21px 16px lime, -24px 20px 32px lime, -5px 23px 41px red, 11px -11px 16px lime, 19px 18px 24px lime;
  }

  81.6% {
    transform: scale(0.93) rotate(423.6deg) skew(-38.9deg, -52.2deg) translate(-98.7px, 20.8px);
    filter: hue-rotate(24.4deg) blur(1.4px) saturate(249%);
    opacity: 0.37;
    background: pink;
    text-shadow: -6px -13px 46px orange, -10px 23px 47px #ff0080, 29px -18px 15px cyan, 17px 6px 18px blue, 12px 21px 16px #ff0080, -15px 7px 46px cyan, 23px -16px 16px lime, 7px 8px 26px pink, 11px -10px 15px cyan, 7px 12px 19px orange;
  }

  81.7% {
    transform: scale(1.59) rotate(476.4deg) skew(-23.0deg, -73.2deg) translate(-61.5px, 87.4px);
    filter: hue-rotate(204.0deg) blur(8.6px) saturate(99%);
    opacity: 1.0;
    background: cyan;
    text-shadow: -10px -1px 18px orange, 28px 2px 28px cyan, -6px 5px 38px cyan, -22px 30px 34px #ff0080, -14px -1px 43px red, -10px 28px 36px magenta, -20px -4px 15px purple, 30px -23px 43px cyan, -13px -25px 19px yellow, 24px 7px 19px pink;
  }

  81.8% {
    transform: scale(0.71) rotate(81.9deg) skew(85.5deg, -54.2deg) translate(-93.4px, -27.9px);
    filter: hue-rotate(206.0deg) blur(0.4px) saturate(58%);
    opacity: 0.93;
    background: yellow;
    text-shadow: -2px 15px 26px orange, -1px -27px 41px lime, 3px 30px 24px red, -13px -23px 50px cyan, -2px 15px 20px magenta, 16px -3px 20px orange, 23px -18px 37px purple, -20px -23px 32px pink, 15px 13px 7px yellow, -29px 25px 47px magenta;
  }

  81.9% {
    transform: scale(0.65) rotate(-564.9deg) skew(89.0deg, 51.1deg) translate(-2.7px, -59.1px);
    filter: hue-rotate(171.3deg) blur(0.9px) saturate(131%);
    opacity: 0.57;
    background: cyan;
    text-shadow: 25px 10px 30px orange, 3px -21px 48px magenta, -2px 18px 49px purple, 22px -12px 25px magenta, -15px 12px 46px cyan, -4px 10px 29px pink, -16px -7px 21px #ff0080, -23px 13px 16px orange, -26px -1px 39px lime, -25px -30px 48px yellow;
  }

  82.0% {
    transform: scale(1.69) rotate(713.4deg) skew(-75.8deg, -25.9deg) translate(15.8px, 91.1px);
    filter: hue-rotate(25.1deg) blur(1.5px) saturate(68%);
    opacity: 0.72;
    background: cyan;
    text-shadow: -12px 3px 11px yellow, 17px -23px 13px yellow, 3px -13px 17px yellow, -9px -23px 36px yellow, -24px 28px 36px yellow, -14px -9px 30px lime, -4px 13px 23px magenta, -28px 1px 5px lime, 15px 9px 26px magenta, -23px 23px 5px red;
  }

  82.1% {
    transform: scale(0.83) rotate(561.2deg) skew(-61.9deg, 4.7deg) translate(-51.0px, 62.6px);
    filter: hue-rotate(88.0deg) blur(8.8px) saturate(222%);
    opacity: 0.79;
    background: orange;
    text-shadow: -19px 4px 13px #ff0080, -17px 15px 14px lime, 20px -19px 12px magenta, -18px 23px 19px cyan, 8px -28px 33px blue, 5px 17px 29px #ff0080, 25px 2px 31px orange, 29px -2px 39px lime, 7px 27px 50px cyan, -28px -8px 20px magenta;
  }

  82.2% {
    transform: scale(0.97) rotate(647.5deg) skew(40.2deg, 70.3deg) translate(77.0px, -90.4px);
    filter: hue-rotate(184.6deg) blur(9.1px) saturate(170%);
    opacity: 0.82;
    background: red;
    text-shadow: 24px 6px 28px cyan, 15px 29px 8px red, 30px -12px 39px cyan, 29px -9px 39px purple, 8px -26px 12px orange, 15px 5px 48px red, -1px 29px 8px blue, 8px -19px 31px blue, 27px 1px 12px blue, -4px -7px 31px yellow;
  }

  82.3% {
    transform: scale(0.62) rotate(-301.2deg) skew(31.9deg, -59.3deg) translate(-75.9px, 31.6px);
    filter: hue-rotate(220.4deg) blur(3.5px) saturate(80%);
    opacity: 0.44;
    background: yellow;
    text-shadow: 28px 29px 20px pink, -21px 11px 6px #ff0080, -24px 20px 10px orange, -18px 6px 47px red, 19px 1px 36px #ff0080, -22px 26px 35px magenta, 15px -30px 12px cyan, -6px -19px 37px cyan, 2px 4px 31px orange, 2px -22px 28px blue;
  }

  82.4% {
    transform: scale(1.28) rotate(-152.8deg) skew(-15.3deg, 74.6deg) translate(-41.8px, 71.2px);
    filter: hue-rotate(330.1deg) blur(9.9px) saturate(67%);
    opacity: 0.39;
    background: lime;
    text-shadow: 1px 17px 31px lime, 15px 21px 15px cyan, -20px -15px 27px purple, 3px 0px 15px red, 14px -26px 44px purple, 15px 8px 41px pink, -1px -25px 5px blue, -1px -25px 45px red, -18px 6px 35px lime, 16px 4px 39px lime;
  }

  82.5% {
    transform: scale(1.43) rotate(-406.3deg) skew(-12.4deg, 73.0deg) translate(-98.7px, -78.2px);
    filter: hue-rotate(214.8deg) blur(2.2px) saturate(233%);
    opacity: 0.32;
    background: magenta;
    text-shadow: 20px 14px 16px cyan, -28px 11px 19px lime, 9px -28px 26px pink, 30px 14px 12px purple, -18px -30px 28px cyan, -8px 13px 27px pink, 11px 18px 14px purple, 29px -16px 30px lime, 27px 6px 24px purple, -1px 14px 16px #ff0080;
  }

  82.6% {
    transform: scale(1.68) rotate(436.1deg) skew(8.6deg, 37.5deg) translate(87.5px, 43.2px);
    filter: hue-rotate(125.4deg) blur(9.7px) saturate(286%);
    opacity: 0.56;
    background: yellow;
    text-shadow: -21px 10px 19px yellow, -15px 25px 5px pink, -29px 27px 15px #ff0080, 29px 14px 29px #ff0080, -27px -30px 7px purple, 7px 24px 39px blue, -22px -21px 6px #ff0080, -27px -25px 30px magenta, 30px 11px 40px #ff0080, -21px 11px 37px pink;
  }

  82.7% {
    transform: scale(1.19) rotate(435.9deg) skew(-62.5deg, -44.1deg) translate(75.3px, -51.3px);
    filter: hue-rotate(110.7deg) blur(9.1px) saturate(157%);
    opacity: 0.57;
    background: purple;
    text-shadow: -13px 16px 27px cyan, 9px 28px 11px red, -24px -14px 19px magenta, 9px -10px 31px yellow, -30px 11px 31px purple, -15px -25px 29px red, 10px -27px 37px #ff0080, 4px 8px 6px cyan, -24px 26px 21px pink, -4px 9px 39px cyan;
  }

  82.8% {
    transform: scale(1.4) rotate(573.4deg) skew(50.8deg, 32.5deg) translate(66.2px, -94.2px);
    filter: hue-rotate(328.6deg) blur(7.4px) saturate(159%);
    opacity: 0.82;
    background: pink;
    text-shadow: 1px 27px 34px magenta, -8px -20px 41px orange, 25px 27px 11px yellow, 17px -2px 29px yellow, -15px 16px 22px orange, -11px 28px 28px cyan, 25px -24px 10px magenta, 17px -19px 15px orange, 12px 24px 46px blue, 10px 17px 7px red;
  }

  82.9% {
    transform: scale(1.2) rotate(566.8deg) skew(13.6deg, -45.9deg) translate(-1.0px, 96.3px);
    filter: hue-rotate(123.1deg) blur(7.2px) saturate(144%);
    opacity: 0.99;
    background: yellow;
    text-shadow: 13px 14px 31px purple, 27px -10px 16px cyan, -8px -20px 46px pink, 28px -2px 27px blue, 2px -10px 34px #ff0080, -19px 18px 41px blue, 8px -25px 9px yellow, -28px -23px 9px pink, 25px 17px 26px yellow, 13px 8px 7px pink;
  }

  83.0% {
    transform: scale(1.1) rotate(-705.3deg) skew(-40.7deg, 1.8deg) translate(-49.2px, -16.7px);
    filter: hue-rotate(357.9deg) blur(6.7px) saturate(105%);
    opacity: 0.73;
    background: lime;
    text-shadow: -6px -2px 50px red, 26px -22px 19px purple, -23px -20px 34px cyan, -24px -17px 45px #ff0080, 1px 7px 48px magenta, 8px -11px 14px yellow, 4px -25px 5px magenta, 30px -5px 33px purple, 1px 0px 47px magenta, 28px -17px 14px #ff0080;
  }

  83.1% {
    transform: scale(0.73) rotate(-433.2deg) skew(51.6deg, -6.1deg) translate(2.1px, 94.6px);
    filter: hue-rotate(348.3deg) blur(4.2px) saturate(215%);
    opacity: 0.34;
    background: orange;
    text-shadow: 2px -30px 41px orange, -11px 16px 48px pink, -14px -9px 21px orange, 0px -25px 33px yellow, -9px 1px 8px cyan, -6px 11px 42px purple, -18px -10px 6px purple, 1px -7px 32px orange, 5px -18px 14px blue, -1px 1px 30px cyan;
  }

  83.2% {
    transform: scale(1.38) rotate(-65.4deg) skew(18.6deg, -56.4deg) translate(-44.5px, 72.9px);
    filter: hue-rotate(132.7deg) blur(6.6px) saturate(55%);
    opacity: 0.41;
    background: red;
    text-shadow: 29px -6px 13px yellow, -2px -15px 44px purple, 16px 8px 17px yellow, 6px 14px 13px red, 30px 14px 36px yellow, -15px 30px 43px orange, 29px 19px 43px magenta, -4px 4px 45px blue, -14px -1px 42px red, -8px 19px 18px lime;
  }

  83.3% {
    transform: scale(1.23) rotate(663.4deg) skew(61.6deg, -63.2deg) translate(-45.5px, -32.2px);
    filter: hue-rotate(6.7deg) blur(7.0px) saturate(189%);
    opacity: 0.77;
    background: blue;
    text-shadow: 11px -27px 6px cyan, -1px 5px 48px lime, 29px -15px 15px yellow, 7px 30px 15px yellow, 7px -14px 15px yellow, -1px -30px 29px red, 7px -26px 10px lime, -6px 2px 10px magenta, -25px 3px 10px orange, -1px 27px 23px blue;
  }

  83.4% {
    transform: scale(1.53) rotate(-204.6deg) skew(65.5deg, 35.5deg) translate(-17.2px, 22.0px);
    filter: hue-rotate(198.7deg) blur(1.2px) saturate(197%);
    opacity: 0.39;
    background: cyan;
    text-shadow: 16px -4px 28px #ff0080, -15px 9px 47px purple, -5px -4px 33px red, 23px -8px 45px blue, 6px 9px 44px yellow, -28px -12px 8px blue, 26px -30px 12px pink, -22px 6px 47px red, -30px 21px 24px magenta, 1px 17px 19px cyan;
  }

  83.5% {
    transform: scale(0.57) rotate(-209.8deg) skew(82.1deg, 21.1deg) translate(25.4px, -52.4px);
    filter: hue-rotate(246.5deg) blur(9.2px) saturate(122%);
    opacity: 1.0;
    background: purple;
    text-shadow: -1px -27px 48px pink, 13px 14px 50px magenta, 17px -28px 33px magenta, -12px -27px 49px yellow, 7px 14px 37px yellow, 5px -13px 28px lime, -15px -14px 18px magenta, 13px -18px 40px cyan, 19px 0px 38px cyan, 27px -24px 10px purple;
  }

  83.6% {
    transform: scale(1.55) rotate(193.3deg) skew(13.4deg, -86.4deg) translate(-25.0px, 48.3px);
    filter: hue-rotate(192.4deg) blur(2.7px) saturate(59%);
    opacity: 0.74;
    background: lime;
    text-shadow: -14px 1px 13px magenta, -22px -6px 32px magenta, -4px -11px 49px lime, -10px -19px 26px magenta, -28px 22px 46px purple, 28px 7px 29px lime, 10px 19px 16px pink, -1px -15px 17px orange, 15px -23px 37px magenta, 21px -5px 46px yellow;
  }

  83.7% {
    transform: scale(1.3) rotate(203.8deg) skew(77.4deg, -38.9deg) translate(-98.6px, 72.2px);
    filter: hue-rotate(317.8deg) blur(2.1px) saturate(249%);
    opacity: 0.97;
    background: blue;
    text-shadow: 2px 23px 29px yellow, -11px 12px 23px #ff0080, 9px -29px 15px magenta, 5px -1px 22px #ff0080, 8px -6px 30px cyan, 9px 6px 49px magenta, -8px 7px 30px purple, 2px -12px 42px yellow, -4px -11px 30px magenta, 16px -5px 22px orange;
  }

  83.8% {
    transform: scale(1.84) rotate(234.0deg) skew(-21.8deg, 85.5deg) translate(-64.8px, -82.3px);
    filter: hue-rotate(291.9deg) blur(0.7px) saturate(122%);
    opacity: 0.81;
    background: yellow;
    text-shadow: -30px 15px 43px #ff0080, 28px 3px 43px #ff0080, 1px -11px 11px cyan, 24px -24px 33px red, 12px -3px 29px orange, 17px -2px 14px orange, 2px 4px 18px cyan, -12px -28px 17px cyan, -20px -13px 25px yellow, 3px -14px 41px lime;
  }

  83.9% {
    transform: scale(1.43) rotate(-305.1deg) skew(37.2deg, 13.0deg) translate(-89.5px, 32.1px);
    filter: hue-rotate(270.3deg) blur(0.3px) saturate(136%);
    opacity: 0.42;
    background: orange;
    text-shadow: -21px 6px 6px yellow, -21px 30px 39px yellow, 26px 23px 31px red, 18px 7px 34px magenta, -26px -10px 38px yellow, 30px -2px 38px cyan, -22px 2px 40px lime, 25px 0px 40px lime, -17px 30px 23px #ff0080, -24px -27px 12px orange;
  }

  84.0% {
    transform: scale(1.94) rotate(-323.7deg) skew(61.3deg, 9.1deg) translate(9.3px, 98.2px);
    filter: hue-rotate(316.0deg) blur(7.6px) saturate(189%);
    opacity: 0.68;
    background: pink;
    text-shadow: 2px -11px 35px magenta, 18px -6px 15px red, -22px -2px 25px purple, -25px 5px 10px #ff0080, 0px 11px 28px orange, 5px 18px 43px lime, 30px -20px 42px pink, 15px -11px 26px magenta, -25px 10px 39px red, -20px 2px 48px purple;
  }

  84.1% {
    transform: scale(1.16) rotate(-369.7deg) skew(70.8deg, -79.2deg) translate(-77.2px, 67.3px);
    filter: hue-rotate(15.1deg) blur(7.5px) saturate(286%);
    opacity: 0.71;
    background: #ff0080;
    text-shadow: 17px -11px 37px yellow, 28px 2px 47px yellow, -21px 14px 24px red, 20px -17px 48px #ff0080, 3px 15px 8px #ff0080, 8px 14px 25px #ff0080, -8px 25px 36px #ff0080, -2px -8px 42px purple, 15px 21px 29px purple, 22px 1px 21px cyan;
  }

  84.2% {
    transform: scale(1.23) rotate(519.4deg) skew(25.8deg, -21.0deg) translate(-4.2px, -67.6px);
    filter: hue-rotate(309.8deg) blur(4.6px) saturate(207%);
    opacity: 0.4;
    background: purple;
    text-shadow: -18px 9px 23px lime, -8px 21px 40px #ff0080, -21px 15px 15px lime, -23px 23px 28px pink, 29px -27px 48px #ff0080, 5px 7px 42px yellow, -22px -9px 27px red, 19px 1px 38px purple, -13px 20px 19px cyan, 13px -10px 27px yellow;
  }

  84.3% {
    transform: scale(2.0) rotate(610.7deg) skew(82.8deg, -86.2deg) translate(-11.3px, 65.6px);
    filter: hue-rotate(303.6deg) blur(2.4px) saturate(191%);
    opacity: 0.8;
    background: magenta;
    text-shadow: 7px -25px 40px purple, 11px -11px 30px magenta, 16px -16px 12px blue, 10px 27px 22px blue, -8px -22px 22px pink, -3px -8px 50px magenta, 25px -28px 20px cyan, -13px -29px 13px orange, 10px -12px 46px magenta, -30px -11px 31px blue;
  }

  84.4% {
    transform: scale(0.98) rotate(437.1deg) skew(-77.1deg, -58.9deg) translate(45.4px, 36.4px);
    filter: hue-rotate(151.6deg) blur(6.9px) saturate(207%);
    opacity: 0.79;
    background: yellow;
    text-shadow: 1px -15px 36px yellow, -29px 9px 32px lime, 11px 9px 29px #ff0080, -16px 0px 11px cyan, -19px 23px 33px magenta, 30px 20px 47px #ff0080, 14px 28px 48px red, 9px 7px 32px orange, 8px -12px 32px purple, 30px -17px 38px #ff0080;
  }

  84.5% {
    transform: scale(1.71) rotate(438.4deg) skew(57.1deg, 18.4deg) translate(40.3px, -79.2px);
    filter: hue-rotate(37.6deg) blur(8.6px) saturate(293%);
    opacity: 0.77;
    background: red;
    text-shadow: -17px 7px 37px blue, -18px -18px 34px magenta, 8px -27px 5px red, -3px -2px 27px #ff0080, 5px 29px 34px cyan, 5px 10px 19px blue, -13px -19px 41px cyan, -9px 23px 42px blue, -6px -18px 26px blue, -3px 8px 9px purple;
  }

  84.6% {
    transform: scale(1.88) rotate(-714.1deg) skew(35.0deg, 76.6deg) translate(63.6px, -97.8px);
    filter: hue-rotate(39.5deg) blur(1.7px) saturate(144%);
    opacity: 0.5;
    background: blue;
    text-shadow: -30px 2px 40px red, 13px 18px 7px orange, 5px -12px 39px blue, -24px -10px 17px pink, 16px 17px 27px blue, -28px -18px 27px purple, 18px -18px 11px #ff0080, 11px 9px 42px lime, -29px 23px 14px lime, 0px 1px 18px blue;
  }

  84.7% {
    transform: scale(0.88) rotate(629.2deg) skew(-1.0deg, -74.2deg) translate(18.2px, -69.7px);
    filter: hue-rotate(185.3deg) blur(3.6px) saturate(217%);
    opacity: 0.53;
    background: magenta;
    text-shadow: 20px -22px 13px yellow, 28px 1px 21px #ff0080, -17px 20px 36px magenta, -3px -29px 26px blue, -21px -29px 33px magenta, -7px -5px 41px #ff0080, -9px -11px 41px #ff0080, 28px 6px 43px orange, 13px 2px 31px red, 10px -11px 22px magenta;
  }

  84.8% {
    transform: scale(0.97) rotate(170.6deg) skew(-60.0deg, 72.2deg) translate(-82.1px, -10.4px);
    filter: hue-rotate(28.2deg) blur(5.0px) saturate(57%);
    opacity: 0.5;
    background: cyan;
    text-shadow: 27px 6px 30px red, -3px -2px 6px yellow, 23px -15px 14px red, -19px -27px 18px red, -15px -30px 8px red, 7px -23px 28px cyan, -29px 7px 22px red, 20px 3px 47px blue, -16px -18px 12px #ff0080, -18px 16px 20px magenta;
  }

  84.9% {
    transform: scale(1.58) rotate(-185.0deg) skew(54.2deg, 30.0deg) translate(-1.4px, 31.0px);
    filter: hue-rotate(87.7deg) blur(7.7px) saturate(57%);
    opacity: 0.46;
    background: blue;
    text-shadow: 19px 21px 5px yellow, 11px 24px 23px purple, 8px -1px 29px pink, -28px -8px 34px lime, -1px -14px 43px cyan, 5px -20px 43px purple, -18px 26px 6px purple, 0px -1px 19px pink, 17px 14px 41px yellow, -21px -24px 41px lime;
  }

  85.0% {
    transform: scale(1.88) rotate(5.5deg) skew(-32.0deg, 8.6deg) translate(-68.7px, -95.8px);
    filter: hue-rotate(17.9deg) blur(6.1px) saturate(182%);
    opacity: 0.41;
    background: magenta;
    text-shadow: -26px 28px 13px orange, -19px 22px 45px lime, 30px 17px 50px yellow, -7px -2px 46px magenta, 17px 28px 5px yellow, 21px -11px 23px orange, -5px 7px 32px pink, 4px 5px 33px red, 24px 8px 20px lime, 4px -14px 38px cyan;
  }

  85.1% {
    transform: scale(1.28) rotate(-121.8deg) skew(-89.7deg, -25.0deg) translate(70.5px, -58.1px);
    filter: hue-rotate(65.6deg) blur(4.7px) saturate(82%);
    opacity: 0.77;
    background: cyan;
    text-shadow: -19px -14px 31px orange, 8px 5px 19px blue, 16px 7px 42px purple, 9px -26px 9px red, 21px 2px 14px magenta, -26px 14px 15px cyan, 24px -21px 20px red, 0px 3px 37px purple, 18px -2px 29px blue, 18px -19px 48px yellow;
  }

  85.2% {
    transform: scale(0.65) rotate(497.4deg) skew(-46.7deg, -19.9deg) translate(-24.9px, 23.0px);
    filter: hue-rotate(178.5deg) blur(1.3px) saturate(193%);
    opacity: 0.33;
    background: cyan;
    text-shadow: 13px 29px 47px blue, 9px -16px 10px blue, 22px -14px 31px magenta, -21px -1px 20px magenta, 0px -12px 5px purple, 14px 20px 25px cyan, -16px 26px 43px purple, 23px 29px 11px purple, 11px -18px 32px lime, 8px 18px 39px cyan;
  }

  85.3% {
    transform: scale(1.07) rotate(-385.4deg) skew(-82.3deg, 22.5deg) translate(-7.3px, -39.1px);
    filter: hue-rotate(230.8deg) blur(8.9px) saturate(263%);
    opacity: 0.48;
    background: cyan;
    text-shadow: -22px 14px 43px magenta, -7px 9px 6px red, 21px -11px 46px pink, 17px 22px 39px yellow, 30px -7px 48px pink, -10px -5px 20px blue, 7px 3px 35px blue, -26px -27px 19px yellow, 25px 27px 33px purple, -26px -26px 28px lime;
  }

  85.4% {
    transform: scale(1.28) rotate(89.5deg) skew(-12.5deg, -4.7deg) translate(-7.0px, 55.4px);
    filter: hue-rotate(146.2deg) blur(3.3px) saturate(273%);
    opacity: 0.59;
    background: yellow;
    text-shadow: 2px -6px 6px lime, 11px 19px 32px red, 5px -13px 6px yellow, 1px -10px 16px pink, -27px -5px 33px blue, -18px -3px 15px pink, 15px -1px 48px blue, -15px 0px 7px #ff0080, 19px 13px 9px orange, 2px -22px 7px #ff0080;
  }

  85.5% {
    transform: scale(0.99) rotate(197.9deg) skew(35.5deg, 43.0deg) translate(-4.5px, 43.5px);
    filter: hue-rotate(356.1deg) blur(6.6px) saturate(265%);
    opacity: 0.49;
    background: purple;
    text-shadow: 5px 26px 48px yellow, 8px 23px 29px pink, -6px -13px 25px purple, -7px -12px 47px yellow, 17px -27px 42px lime, 10px -14px 14px magenta, -15px -30px 17px orange, 16px 6px 30px pink, -23px 6px 46px yellow, 26px 12px 46px pink;
  }

  85.6% {
    transform: scale(1.29) rotate(191.8deg) skew(2.4deg, -61.2deg) translate(-63.6px, -49.5px);
    filter: hue-rotate(10.0deg) blur(1.6px) saturate(198%);
    opacity: 0.7;
    background: #ff0080;
    text-shadow: 16px 11px 32px #ff0080, 28px -22px 27px purple, -12px -23px 8px lime, -29px 8px 30px pink, -8px 0px 24px yellow, -2px -16px 46px lime, 24px -1px 44px purple, 8px -19px 36px lime, 29px 13px 31px orange, -23px 19px 46px magenta;
  }

  85.7% {
    transform: scale(0.52) rotate(482.1deg) skew(26.6deg, 4.0deg) translate(-18.5px, 12.7px);
    filter: hue-rotate(239.7deg) blur(1.6px) saturate(59%);
    opacity: 0.58;
    background: lime;
    text-shadow: -10px -20px 40px #ff0080, -21px -10px 50px cyan, 19px -17px 24px lime, 23px -7px 20px purple, -16px -12px 37px lime, -13px 3px 29px #ff0080, 13px -20px 16px lime, -22px 12px 35px purple, 4px 21px 25px purple, 10px -7px 25px blue;
  }

  85.8% {
    transform: scale(1.58) rotate(325.9deg) skew(-83.9deg, -64.5deg) translate(38.3px, 36.4px);
    filter: hue-rotate(136.5deg) blur(0.5px) saturate(189%);
    opacity: 0.44;
    background: #ff0080;
    text-shadow: -23px 13px 50px cyan, -7px -23px 11px lime, -11px 23px 48px lime, -28px 21px 32px lime, 21px 29px 19px blue, -13px -17px 22px red, -11px -18px 29px #ff0080, -10px -13px 7px lime, -16px -2px 44px purple, 1px -11px 6px lime;
  }

  85.9% {
    transform: scale(1.45) rotate(-719.9deg) skew(4.8deg, -68.2deg) translate(76.9px, 86.9px);
    filter: hue-rotate(275.7deg) blur(1.5px) saturate(158%);
    opacity: 0.47;
    background: pink;
    text-shadow: 22px 17px 17px pink, 26px -8px 24px purple, -30px -3px 10px cyan, -21px -27px 9px purple, 7px -19px 39px red, -19px 19px 16px lime, 24px -4px 17px cyan, 15px 0px 26px blue, 27px 2px 30px yellow, -14px 23px 43px lime;
  }

  86.0% {
    transform: scale(0.93) rotate(153.2deg) skew(-10.0deg, 58.9deg) translate(38.9px, 76.3px);
    filter: hue-rotate(165.0deg) blur(5.8px) saturate(101%);
    opacity: 0.75;
    background: cyan;
    text-shadow: -14px -7px 21px lime, -21px 3px 13px red, 21px 1px 39px blue, -13px 22px 34px yellow, 8px 19px 29px purple, -16px -27px 17px cyan, -14px 4px 10px red, 18px -13px 39px red, 11px 0px 36px yellow, 11px 10px 34px cyan;
  }

  86.1% {
    transform: scale(1.81) rotate(-562.9deg) skew(-26.7deg, -67.3deg) translate(-66.7px, 79.7px);
    filter: hue-rotate(70.4deg) blur(3.1px) saturate(111%);
    opacity: 0.6;
    background: lime;
    text-shadow: -10px -29px 31px yellow, -2px 3px 25px yellow, -14px 24px 45px cyan, 9px 2px 10px blue, 27px 6px 22px yellow, -26px -20px 46px red, -19px -10px 44px cyan, -19px -20px 44px pink, 18px -10px 24px purple, 28px -7px 6px red;
  }

  86.2% {
    transform: scale(1.5) rotate(411.8deg) skew(39.7deg, 49.0deg) translate(-84.4px, 16.5px);
    filter: hue-rotate(220.4deg) blur(2.5px) saturate(210%);
    opacity: 0.38;
    background: yellow;
    text-shadow: -27px 27px 33px yellow, -29px -27px 23px purple, -11px -23px 33px blue, 10px 8px 43px orange, -21px -12px 23px orange, 4px -11px 32px lime, 29px -24px 14px orange, -22px -2px 47px cyan, 11px 1px 35px yellow, -15px -25px 30px cyan;
  }

  86.3% {
    transform: scale(0.64) rotate(244.6deg) skew(51.1deg, -12.4deg) translate(-67.1px, 28.8px);
    filter: hue-rotate(301.1deg) blur(1.6px) saturate(127%);
    opacity: 0.5;
    background: orange;
    text-shadow: 19px -7px 10px blue, -3px -21px 34px #ff0080, 16px -19px 36px blue, 18px -24px 41px red, -20px -7px 46px yellow, 12px -26px 5px yellow, 6px 9px 35px blue, 9px 14px 19px pink, 16px 18px 27px purple, -21px 15px 5px yellow;
  }

  86.4% {
    transform: scale(1.91) rotate(-405.8deg) skew(-14.9deg, -41.9deg) translate(-1.7px, 63.1px);
    filter: hue-rotate(41.7deg) blur(0.8px) saturate(286%);
    opacity: 0.64;
    background: orange;
    text-shadow: -26px -25px 23px #ff0080, 30px 21px 45px pink, 22px -24px 13px blue, 23px 25px 40px purple, -6px -26px 17px #ff0080, 23px -13px 47px orange, 7px -30px 46px lime, -30px -18px 18px lime, -15px 15px 25px yellow, -13px 7px 11px lime;
  }

  86.5% {
    transform: scale(1.06) rotate(436.6deg) skew(-31.4deg, 2.9deg) translate(-21.0px, 78.3px);
    filter: hue-rotate(11.5deg) blur(8.8px) saturate(80%);
    opacity: 0.58;
    background: #ff0080;
    text-shadow: -30px -21px 27px magenta, -30px -21px 16px #ff0080, -3px -27px 32px orange, 3px 19px 30px pink, -18px 5px 35px orange, -24px 18px 21px purple, -23px -22px 12px blue, 21px -17px 10px #ff0080, 3px -2px 13px lime, -22px -21px 43px #ff0080;
  }

  86.6% {
    transform: scale(0.56) rotate(-487.7deg) skew(8.8deg, 9.1deg) translate(10.9px, -12.5px);
    filter: hue-rotate(53.4deg) blur(7.2px) saturate(231%);
    opacity: 0.4;
    background: #ff0080;
    text-shadow: -2px -11px 45px pink, -9px -6px 34px pink, -19px 21px 48px #ff0080, -7px -28px 17px orange, -13px -30px 37px cyan, -5px -19px 37px #ff0080, -6px 29px 22px pink, 21px -12px 27px purple, 12px 18px 26px magenta, 23px 17px 28px magenta;
  }

  86.7% {
    transform: scale(0.9) rotate(273.5deg) skew(-58.1deg, 53.4deg) translate(74.1px, -3.2px);
    filter: hue-rotate(98.4deg) blur(3.5px) saturate(133%);
    opacity: 0.41;
    background: purple;
    text-shadow: 25px -17px 14px yellow, -10px -28px 23px magenta, 23px 24px 46px yellow, -28px -9px 45px lime, 4px -14px 8px #ff0080, -5px -22px 27px pink, -16px -22px 37px pink, -29px -10px 29px blue, 8px -16px 18px magenta, -3px -28px 28px blue;
  }

  86.8% {
    transform: scale(1.69) rotate(641.7deg) skew(-57.4deg, 8.4deg) translate(-51.6px, -93.6px);
    filter: hue-rotate(245.6deg) blur(5.9px) saturate(293%);
    opacity: 0.53;
    background: lime;
    text-shadow: 20px 13px 13px #ff0080, -26px -24px 28px yellow, 30px 11px 39px yellow, 24px 23px 39px #ff0080, -9px -9px 9px magenta, -23px -3px 21px blue, 30px -29px 7px #ff0080, -14px -28px 7px #ff0080, -26px -4px 41px purple, -3px 8px 26px purple;
  }

  86.9% {
    transform: scale(1.45) rotate(-369.7deg) skew(35.0deg, -47.1deg) translate(-97.5px, 33.1px);
    filter: hue-rotate(174.8deg) blur(5.7px) saturate(200%);
    opacity: 0.93;
    background: red;
    text-shadow: -28px -3px 17px blue, -25px -21px 47px orange, -17px -16px 34px purple, 19px -21px 34px blue, 21px -17px 38px yellow, -13px 11px 8px #ff0080, -15px 20px 44px #ff0080, -20px 5px 30px pink, 29px -27px 13px orange, -20px -14px 11px lime;
  }

  87.0% {
    transform: scale(0.69) rotate(-253.1deg) skew(-43.7deg, 77.6deg) translate(72.6px, 54.8px);
    filter: hue-rotate(55.2deg) blur(7.0px) saturate(195%);
    opacity: 0.91;
    background: red;
    text-shadow: -7px -9px 12px red, 22px -30px 45px yellow, -1px -21px 5px orange, -2px 12px 16px red, -11px -29px 29px red, 20px 1px 38px #ff0080, -11px 24px 44px lime, -2px -24px 41px magenta, -28px -30px 34px #ff0080, -12px -28px 30px purple;
  }

  87.1% {
    transform: scale(0.8) rotate(-251.7deg) skew(-44.2deg, 17.0deg) translate(-59.3px, 6.9px);
    filter: hue-rotate(157.0deg) blur(1.2px) saturate(250%);
    opacity: 0.83;
    background: #ff0080;
    text-shadow: -30px -14px 14px pink, -12px 26px 28px lime, -14px 28px 13px pink, 28px -22px 21px magenta, -20px -14px 27px yellow, -11px 11px 45px magenta, 13px 11px 16px red, -28px -25px 47px magenta, -12px 0px 34px purple, -7px -28px 30px #ff0080;
  }

  87.2% {
    transform: scale(1.24) rotate(-392.1deg) skew(-78.1deg, -85.0deg) translate(-90.6px, -56.7px);
    filter: hue-rotate(197.9deg) blur(9.2px) saturate(102%);
    opacity: 0.32;
    background: orange;
    text-shadow: -2px 18px 28px pink, 28px -14px 12px magenta, 27px -7px 10px cyan, 25px 21px 23px magenta, 24px 12px 36px magenta, -14px 26px 30px #ff0080, -24px 24px 9px magenta, -16px 2px 50px lime, -17px -2px 10px lime, -7px 24px 34px cyan;
  }

  87.3% {
    transform: scale(0.83) rotate(-380.2deg) skew(81.3deg, -86.2deg) translate(-47.7px, 63.8px);
    filter: hue-rotate(14.8deg) blur(5.0px) saturate(261%);
    opacity: 0.57;
    background: #ff0080;
    text-shadow: -18px 28px 42px purple, 14px -6px 19px red, -11px -4px 8px orange, 8px 28px 45px cyan, -28px 22px 34px cyan, 5px -24px 14px orange, 0px 28px 47px orange, -22px -22px 40px cyan, 27px 1px 7px #ff0080, 16px 24px 27px lime;
  }

  87.4% {
    transform: scale(0.88) rotate(408.9deg) skew(2.2deg, 65.8deg) translate(-46.4px, 23.5px);
    filter: hue-rotate(108.6deg) blur(9.0px) saturate(251%);
    opacity: 0.59;
    background: orange;
    text-shadow: 29px -26px 11px orange, 20px -17px 5px magenta, -22px 24px 22px magenta, -15px -2px 28px yellow, 13px 15px 49px orange, -1px 16px 22px red, 11px 25px 10px red, -28px 24px 16px cyan, 0px -24px 21px pink, 9px 30px 9px lime;
  }

  87.5% {
    transform: scale(1.41) rotate(504.1deg) skew(-87.2deg, 19.0deg) translate(39.7px, -89.5px);
    filter: hue-rotate(78.9deg) blur(8.3px) saturate(231%);
    opacity: 0.75;
    background: pink;
    text-shadow: -8px 25px 5px cyan, -6px -17px 18px cyan, -24px 5px 9px yellow, -13px 4px 39px yellow, 21px -20px 14px magenta, 4px -21px 28px pink, 12px 5px 6px orange, -23px -3px 8px #ff0080, -23px -27px 50px pink, -13px -30px 48px blue;
  }

  87.6% {
    transform: scale(0.86) rotate(-475.8deg) skew(27.2deg, -0.8deg) translate(70.0px, 59.8px);
    filter: hue-rotate(82.5deg) blur(2.3px) saturate(53%);
    opacity: 0.37;
    background: purple;
    text-shadow: -24px -4px 40px magenta, 20px 15px 29px cyan, 0px 21px 23px orange, 10px -28px 47px red, -8px -30px 16px orange, -1px -1px 19px red, 7px -6px 46px #ff0080, -18px -7px 22px purple, -8px -8px 31px magenta, 14px -16px 38px orange;
  }

  87.7% {
    transform: scale(1.91) rotate(-215.3deg) skew(37.1deg, -7.9deg) translate(-34.0px, -75.7px);
    filter: hue-rotate(288.6deg) blur(0.5px) saturate(244%);
    opacity: 0.74;
    background: orange;
    text-shadow: -26px 24px 45px blue, 21px -9px 49px #ff0080, 4px 9px 15px magenta, -29px -5px 44px yellow, -26px 15px 11px magenta, 14px -26px 38px lime, 2px -21px 27px magenta, -23px 19px 13px #ff0080, -10px 9px 38px orange, 15px -28px 18px orange;
  }

  87.8% {
    transform: scale(1.21) rotate(-377.5deg) skew(-18.3deg, -82.0deg) translate(11.5px, -51.1px);
    filter: hue-rotate(333.5deg) blur(1.8px) saturate(167%);
    opacity: 0.35;
    background: pink;
    text-shadow: -21px 5px 41px pink, 26px -16px 37px orange, 5px 14px 9px purple, 26px -24px 6px blue, -30px 10px 47px #ff0080, -12px -23px 30px orange, 8px 26px 31px yellow, -28px -26px 48px cyan, 19px -30px 42px yellow, -17px 22px 6px purple;
  }

  87.9% {
    transform: scale(1.9) rotate(-540.3deg) skew(-84.1deg, 52.6deg) translate(59.5px, 59.3px);
    filter: hue-rotate(166.5deg) blur(0.1px) saturate(230%);
    opacity: 0.34;
    background: pink;
    text-shadow: 29px -18px 20px purple, 24px 19px 12px pink, 18px 1px 11px pink, 6px -27px 8px magenta, -17px 9px 10px purple, 4px -24px 36px lime, -16px -18px 30px blue, 27px 12px 46px blue, 10px -29px 6px yellow, 10px 27px 34px purple;
  }

  88.0% {
    transform: scale(1.2) rotate(181.7deg) skew(-71.7deg, 16.2deg) translate(-98.8px, -9.7px);
    filter: hue-rotate(127.8deg) blur(3.5px) saturate(144%);
    opacity: 0.86;
    background: purple;
    text-shadow: -28px -12px 19px blue, -12px -16px 25px cyan, -26px 23px 12px purple, -4px -1px 19px red, -14px -18px 31px cyan, -5px 4px 49px blue, 21px -28px 41px purple, 11px -6px 29px cyan, 18px -15px 7px orange, 6px 13px 16px cyan;
  }

  88.1% {
    transform: scale(0.86) rotate(-177.9deg) skew(-0.1deg, 61.6deg) translate(-28.8px, -48.5px);
    filter: hue-rotate(146.6deg) blur(1.5px) saturate(78%);
    opacity: 0.7;
    background: blue;
    text-shadow: 23px 23px 42px yellow, 5px -5px 23px #ff0080, -17px -11px 24px red, -10px 2px 21px blue, 9px -16px 30px yellow, 5px 2px 11px lime, -22px 17px 46px cyan, 14px 28px 13px yellow, -16px -2px 20px lime, -18px -5px 40px blue;
  }

  88.2% {
    transform: scale(1.41) rotate(449.0deg) skew(-32.7deg, 6.2deg) translate(-33.9px, 81.8px);
    filter: hue-rotate(262.4deg) blur(7.1px) saturate(209%);
    opacity: 0.58;
    background: cyan;
    text-shadow: 14px 30px 47px cyan, -12px 3px 43px lime, 18px 20px 9px #ff0080, 29px 22px 5px orange, 4px -28px 40px cyan, 9px 25px 42px lime, 16px 12px 25px purple, -30px 3px 24px #ff0080, 27px 25px 30px #ff0080, -29px 6px 50px pink;
  }

  88.3% {
    transform: scale(1.6) rotate(152.0deg) skew(46.8deg, 23.8deg) translate(-6.0px, -27.5px);
    filter: hue-rotate(233.9deg) blur(5.9px) saturate(73%);
    opacity: 0.33;
    background: pink;
    text-shadow: 23px -12px 25px orange, -10px 25px 28px #ff0080, 0px -10px 17px lime, -26px 27px 37px red, 14px -23px 45px magenta, 3px -24px 46px magenta, -25px 27px 16px blue, 5px -17px 15px yellow, -14px -1px 46px #ff0080, 20px 14px 9px lime;
  }

  88.4% {
    transform: scale(1.6) rotate(88.3deg) skew(17.7deg, -31.7deg) translate(-0.7px, 23.7px);
    filter: hue-rotate(24.5deg) blur(6.2px) saturate(171%);
    opacity: 0.53;
    background: cyan;
    text-shadow: 15px -23px 44px blue, 30px 7px 41px #ff0080, -27px -25px 41px orange, -2px 12px 36px red, 10px 17px 15px cyan, 14px -5px 46px magenta, 18px 20px 46px orange, -16px -20px 8px magenta, 4px -26px 20px orange, 27px -17px 30px orange;
  }

  88.5% {
    transform: scale(1.37) rotate(439.9deg) skew(-26.0deg, -22.4deg) translate(99.9px, -76.5px);
    filter: hue-rotate(52.2deg) blur(5.8px) saturate(250%);
    opacity: 0.61;
    background: pink;
    text-shadow: -28px -1px 34px purple, 20px 17px 32px orange, 25px 1px 7px pink, 2px -28px 27px pink, 26px -22px 12px blue, 12px 28px 42px yellow, 14px 10px 25px orange, 5px 15px 37px magenta, 12px 26px 16px pink, 24px 25px 41px #ff0080;
  }

  88.6% {
    transform: scale(0.77) rotate(500.2deg) skew(17.9deg, -54.9deg) translate(42.6px, 30.6px);
    filter: hue-rotate(50.4deg) blur(1.0px) saturate(271%);
    opacity: 0.7;
    background: lime;
    text-shadow: 9px -1px 46px orange, -25px 7px 44px purple, 17px -2px 46px orange, -14px -4px 34px purple, 11px 12px 35px blue, -29px 2px 24px yellow, 9px 12px 33px lime, -20px 1px 14px red, -6px 28px 49px pink, -17px 3px 37px yellow;
  }

  88.7% {
    transform: scale(0.95) rotate(-603.0deg) skew(-31.0deg, -78.9deg) translate(35.4px, 58.0px);
    filter: hue-rotate(119.2deg) blur(7.0px) saturate(267%);
    opacity: 0.95;
    background: purple;
    text-shadow: -3px 27px 40px lime, 30px 27px 48px pink, -13px -26px 26px purple, 17px -24px 43px purple, -1px -8px 13px cyan, 17px -18px 43px blue, -2px 18px 41px lime, -30px -21px 33px #ff0080, 28px 28px 12px red, 22px 12px 42px blue;
  }

  88.8% {
    transform: scale(0.88) rotate(462.8deg) skew(46.2deg, 4.9deg) translate(-75.1px, -48.9px);
    filter: hue-rotate(344.4deg) blur(0.9px) saturate(168%);
    opacity: 0.44;
    background: pink;
    text-shadow: 3px 0px 7px red, 25px 0px 12px red, 6px -30px 26px yellow, 4px -24px 44px orange, 19px 28px 19px lime, -12px 27px 10px pink, 19px 27px 42px #ff0080, 8px -22px 26px orange, -15px 3px 8px magenta, -8px -24px 29px red;
  }

  88.9% {
    transform: scale(0.85) rotate(303.0deg) skew(51.6deg, 85.2deg) translate(-25.8px, -93.0px);
    filter: hue-rotate(356.4deg) blur(4.4px) saturate(286%);
    opacity: 0.58;
    background: purple;
    text-shadow: -3px 9px 29px red, -16px 25px 8px cyan, 29px -18px 37px yellow, -8px -2px 5px magenta, -2px -27px 37px red, -24px 21px 43px blue, 29px -9px 13px yellow, -22px -29px 44px orange, 4px 9px 44px yellow, 25px -7px 24px #ff0080;
  }

  89.0% {
    transform: scale(1.37) rotate(-707.6deg) skew(-89.8deg, -5.3deg) translate(-90.1px, 54.3px);
    filter: hue-rotate(278.9deg) blur(5.0px) saturate(171%);
    opacity: 0.93;
    background: magenta;
    text-shadow: 7px -6px 13px blue, -25px -1px 13px cyan, 5px -14px 34px cyan, 1px -23px 20px #ff0080, 1px 25px 32px pink, 22px -20px 41px yellow, 29px -12px 13px orange, 18px 26px 10px magenta, -6px -13px 5px cyan, 12px 24px 14px blue;
  }

  89.1% {
    transform: scale(1.56) rotate(-155.9deg) skew(-39.0deg, 73.9deg) translate(29.8px, 65.3px);
    filter: hue-rotate(10.4deg) blur(9.7px) saturate(97%);
    opacity: 0.95;
    background: yellow;
    text-shadow: -5px -25px 36px yellow, -21px 2px 30px yellow, 1px 9px 29px blue, -2px 25px 26px magenta, -16px 27px 46px cyan, 18px -21px 38px magenta, 16px -29px 49px lime, 13px 5px 5px #ff0080, 30px 24px 50px pink, -11px -15px 8px pink;
  }

  89.2% {
    transform: scale(0.72) rotate(-150.2deg) skew(-81.7deg, 72.4deg) translate(-25.3px, -23.5px);
    filter: hue-rotate(193.4deg) blur(5.9px) saturate(213%);
    opacity: 0.52;
    background: purple;
    text-shadow: 26px -1px 40px orange, 11px -30px 10px purple, -10px -29px 40px cyan, 6px 12px 16px orange, 5px -19px 14px red, -23px -14px 6px cyan, 3px 5px 47px orange, 29px -20px 13px yellow, -23px 8px 8px purple, 0px -30px 17px orange;
  }

  89.3% {
    transform: scale(0.65) rotate(-423.2deg) skew(-37.4deg, 57.4deg) translate(-64.9px, -18.9px);
    filter: hue-rotate(136.0deg) blur(7.4px) saturate(191%);
    opacity: 0.37;
    background: magenta;
    text-shadow: 17px 30px 41px magenta, 13px -7px 28px yellow, -14px -14px 44px red, 24px -13px 9px lime, 26px 19px 9px lime, 30px -16px 21px pink, 8px 21px 44px lime, -2px 6px 19px purple, -1px -19px 39px yellow, -2px -23px 34px yellow;
  }

  89.4% {
    transform: scale(1.14) rotate(386.2deg) skew(1.4deg, 59.6deg) translate(-28.5px, -59.7px);
    filter: hue-rotate(255.3deg) blur(6.3px) saturate(229%);
    opacity: 0.96;
    background: orange;
    text-shadow: 25px -7px 13px lime, -18px -19px 9px magenta, 19px -15px 13px pink, -21px -6px 29px #ff0080, 25px -3px 49px blue, 11px 18px 30px magenta, -15px 23px 38px magenta, 3px 11px 8px magenta, -5px -20px 48px red, 29px 1px 35px pink;
  }

  89.5% {
    transform: scale(1.85) rotate(-125.3deg) skew(-9.4deg, -63.2deg) translate(-15.4px, -54.3px);
    filter: hue-rotate(39.7deg) blur(9.8px) saturate(201%);
    opacity: 0.33;
    background: blue;
    text-shadow: -16px 17px 16px purple, -21px 24px 34px blue, 12px -6px 43px orange, 8px -22px 45px purple, 12px -28px 38px orange, -15px 12px 49px purple, 14px 25px 30px blue, 29px -27px 34px lime, 4px -22px 40px orange, -16px -16px 8px lime;
  }

  89.6% {
    transform: scale(1.69) rotate(-647.8deg) skew(-70.5deg, -59.1deg) translate(-20.2px, -7.1px);
    filter: hue-rotate(219.5deg) blur(4.5px) saturate(187%);
    opacity: 0.92;
    background: cyan;
    text-shadow: 22px -2px 6px yellow, 29px 5px 34px blue, -10px -20px 18px yellow, -17px -1px 49px #ff0080, 1px -14px 12px orange, -28px 0px 46px pink, 29px 29px 18px blue, -5px -6px 5px pink, 21px 10px 16px blue, 13px 7px 27px lime;
  }

  89.7% {
    transform: scale(1.77) rotate(281.0deg) skew(8.3deg, 5.9deg) translate(5.1px, -22.5px);
    filter: hue-rotate(30.5deg) blur(1.7px) saturate(189%);
    opacity: 0.37;
    background: blue;
    text-shadow: 24px 21px 20px cyan, 14px 0px 19px magenta, 22px -18px 15px red, -16px -24px 19px red, -30px -8px 28px blue, 28px -15px 15px yellow, 13px -22px 23px pink, -3px 6px 22px blue, 13px -20px 33px orange, 30px -28px 10px cyan;
  }

  89.8% {
    transform: scale(1.66) rotate(702.8deg) skew(34.5deg, -24.5deg) translate(-71.5px, 7.9px);
    filter: hue-rotate(319.8deg) blur(6.3px) saturate(259%);
    opacity: 0.45;
    background: orange;
    text-shadow: 11px 2px 17px #ff0080, -17px -28px 23px blue, -20px 4px 22px red, 4px -16px 27px yellow, -18px -24px 37px orange, -7px 10px 50px blue, 21px -12px 22px pink, 27px 19px 32px magenta, -5px -26px 24px #ff0080, 13px 30px 28px purple;
  }

  89.9% {
    transform: scale(0.89) rotate(1.8deg) skew(53.4deg, -23.6deg) translate(-11.1px, 28.0px);
    filter: hue-rotate(52.5deg) blur(3.3px) saturate(82%);
    opacity: 0.95;
    background: purple;
    text-shadow: 2px 14px 34px orange, 9px 6px 45px cyan, -26px 19px 29px magenta, -26px -6px 20px #ff0080, 18px 30px 12px blue, -22px -4px 8px #ff0080, 20px 0px 50px yellow, 17px 18px 35px cyan, 28px -17px 7px blue, -16px -10px 23px orange;
  }

  90.0% {
    transform: scale(1.46) rotate(534.9deg) skew(38.6deg, -9.2deg) translate(70.0px, 75.8px);
    filter: hue-rotate(72.7deg) blur(9.1px) saturate(75%);
    opacity: 0.38;
    background: red;
    text-shadow: -7px 9px 35px lime, 17px -18px 16px pink, 9px 14px 27px orange, -22px -13px 39px purple, -19px -2px 24px orange, 1px 11px 48px cyan, -20px 4px 41px blue, -14px 8px 22px magenta, -29px -25px 41px lime, 0px -25px 24px pink;
  }

  90.1% {
    transform: scale(1.84) rotate(144.1deg) skew(25.2deg, -69.1deg) translate(-36.3px, -79.8px);
    filter: hue-rotate(240.7deg) blur(2.1px) saturate(124%);
    opacity: 0.62;
    background: lime;
    text-shadow: 29px 18px 12px blue, 9px 17px 15px lime, -4px -4px 46px cyan, 28px -27px 43px orange, 30px 9px 8px purple, 29px -15px 16px blue, -12px 13px 5px pink, 2px 17px 18px #ff0080, -26px -22px 31px #ff0080, 16px 10px 25px magenta;
  }

  90.2% {
    transform: scale(0.53) rotate(-74.1deg) skew(-36.1deg, 84.9deg) translate(-53.0px, 10.2px);
    filter: hue-rotate(24.9deg) blur(0.3px) saturate(171%);
    opacity: 0.83;
    background: pink;
    text-shadow: 11px -15px 12px purple, 15px 2px 50px #ff0080, 17px 19px 35px yellow, -7px -21px 11px purple, -15px -22px 30px lime, 20px -16px 49px lime, -9px 4px 40px lime, 20px 21px 49px #ff0080, -28px -30px 41px orange, 23px -11px 37px blue;
  }

  90.3% {
    transform: scale(0.9) rotate(-654.7deg) skew(-4.2deg, -48.9deg) translate(75.2px, 15.7px);
    filter: hue-rotate(252.4deg) blur(9.5px) saturate(214%);
    opacity: 0.82;
    background: pink;
    text-shadow: -29px 9px 50px #ff0080, -22px -19px 23px #ff0080, -22px 25px 43px blue, 26px -2px 13px #ff0080, 14px 15px 6px #ff0080, -16px 16px 17px #ff0080, 18px -20px 49px yellow, 8px 10px 7px #ff0080, 22px -14px 45px blue, -27px 1px 38px red;
  }

  90.4% {
    transform: scale(0.66) rotate(372.3deg) skew(-86.1deg, -72.1deg) translate(-66.6px, -65.5px);
    filter: hue-rotate(171.5deg) blur(8.9px) saturate(166%);
    opacity: 0.7;
    background: yellow;
    text-shadow: -6px -22px 48px red, -3px -8px 50px purple, 22px -25px 35px orange, -9px 27px 34px lime, -20px -10px 13px pink, 25px -16px 12px lime, 20px 1px 31px #ff0080, -28px -26px 11px blue, 12px 25px 48px red, 5px -15px 20px lime;
  }

  90.5% {
    transform: scale(1.96) rotate(-230.9deg) skew(-0.3deg, -1.9deg) translate(65.8px, 29.9px);
    filter: hue-rotate(345.2deg) blur(7.5px) saturate(189%);
    opacity: 0.77;
    background: orange;
    text-shadow: -1px 13px 10px orange, -9px -25px 19px blue, -22px 21px 5px lime, -2px -27px 25px #ff0080, 6px -19px 22px blue, 9px 8px 43px blue, 4px 24px 21px pink, -3px 26px 20px orange, 29px -2px 28px blue, 21px 4px 36px pink;
  }

  90.6% {
    transform: scale(1.39) rotate(337.1deg) skew(-80.1deg, 35.8deg) translate(21.3px, -74.1px);
    filter: hue-rotate(303.6deg) blur(7.9px) saturate(82%);
    opacity: 0.68;
    background: cyan;
    text-shadow: -29px 23px 31px cyan, 21px -3px 48px #ff0080, 25px -18px 23px pink, -27px 1px 14px cyan, 9px 3px 35px lime, 18px -30px 42px blue, -3px -27px 29px purple, 29px 13px 44px purple, 22px 4px 16px #ff0080, 16px 7px 35px magenta;
  }

  90.7% {
    transform: scale(1.51) rotate(-302.3deg) skew(45.3deg, 57.5deg) translate(31.3px, 12.1px);
    filter: hue-rotate(323.7deg) blur(3.0px) saturate(96%);
    opacity: 0.79;
    background: yellow;
    text-shadow: -28px 22px 34px pink, 9px 16px 46px purple, -6px -30px 5px magenta, 5px 30px 27px pink, -20px 16px 23px yellow, -3px 17px 21px magenta, -3px -15px 17px purple, -25px 23px 36px red, -3px -10px 25px yellow, 21px -27px 45px purple;
  }

  90.8% {
    transform: scale(1.46) rotate(640.7deg) skew(-7.1deg, 22.7deg) translate(89.9px, -24.7px);
    filter: hue-rotate(67.0deg) blur(9.8px) saturate(104%);
    opacity: 0.5;
    background: magenta;
    text-shadow: -27px 4px 35px #ff0080, -29px 26px 26px blue, -4px -15px 27px #ff0080, -14px 6px 14px yellow, -1px -29px 15px blue, 26px -19px 23px orange, -29px -29px 27px lime, 11px -10px 10px orange, -8px -16px 18px purple, 11px -19px 8px orange;
  }

  90.9% {
    transform: scale(0.68) rotate(-100.6deg) skew(-5.2deg, 87.4deg) translate(-71.7px, 70.6px);
    filter: hue-rotate(79.7deg) blur(3.9px) saturate(299%);
    opacity: 0.47;
    background: #ff0080;
    text-shadow: -25px 24px 38px magenta, 11px -17px 37px pink, -10px -15px 37px cyan, 18px 10px 38px cyan, 11px 8px 12px pink, 18px -19px 13px red, -14px 8px 49px lime, 17px 21px 42px cyan, 24px 6px 23px pink, 9px -21px 23px orange;
  }

  91.0% {
    transform: scale(1.0) rotate(-9.5deg) skew(79.2deg, -64.3deg) translate(25.5px, -98.0px);
    filter: hue-rotate(269.3deg) blur(1.8px) saturate(79%);
    opacity: 0.66;
    background: red;
    text-shadow: -14px -5px 12px blue, 25px 22px 47px purple, 2px -24px 11px yellow, -5px 14px 43px magenta, -12px 26px 41px pink, -21px -23px 30px pink, -22px -19px 9px cyan, 19px 29px 28px purple, 8px -1px 43px cyan, -22px -23px 50px orange;
  }

  91.1% {
    transform: scale(1.26) rotate(-686.2deg) skew(9.4deg, -84.0deg) translate(-30.0px, 93.0px);
    filter: hue-rotate(13.9deg) blur(4.9px) saturate(141%);
    opacity: 0.78;
    background: orange;
    text-shadow: -23px 29px 49px orange, 22px 19px 30px red, -11px 26px 34px red, 26px -20px 40px red, 24px 15px 26px blue, -21px 9px 6px #ff0080, -4px -6px 8px lime, 5px -3px 11px pink, 19px -27px 37px yellow, 20px -29px 32px pink;
  }

  91.2% {
    transform: scale(0.65) rotate(-464.4deg) skew(69.6deg, -82.9deg) translate(87.8px, 97.3px);
    filter: hue-rotate(329.3deg) blur(7.2px) saturate(93%);
    opacity: 0.34;
    background: magenta;
    text-shadow: -8px -15px 50px lime, -3px -2px 48px #ff0080, 3px -30px 45px cyan, -22px -9px 14px blue, -5px -18px 27px red, 18px 24px 34px blue, -8px -12px 28px yellow, -7px 15px 50px blue, -6px 27px 39px purple, -20px -18px 28px blue;
  }

  91.3% {
    transform: scale(1.25) rotate(-627.4deg) skew(-32.0deg, 22.2deg) translate(-79.2px, 16.4px);
    filter: hue-rotate(311.2deg) blur(7.2px) saturate(134%);
    opacity: 0.94;
    background: orange;
    text-shadow: 13px 14px 17px magenta, 30px -1px 7px blue, 18px -13px 38px lime, -30px 7px 26px pink, -23px -12px 43px lime, 13px -12px 34px magenta, 2px -17px 17px lime, 26px -8px 41px blue, -1px -12px 23px orange, -11px 9px 31px pink;
  }

  91.4% {
    transform: scale(0.67) rotate(35.9deg) skew(-19.6deg, 35.7deg) translate(32.5px, 32.7px);
    filter: hue-rotate(0.8deg) blur(9.5px) saturate(167%);
    opacity: 0.81;
    background: #ff0080;
    text-shadow: 19px -9px 6px orange, -12px 29px 19px cyan, -23px 9px 34px #ff0080, 10px -26px 40px red, -16px 10px 41px purple, -11px -19px 49px orange, -24px 0px 29px lime, 30px -6px 29px blue, 16px -26px 31px lime, 12px 22px 47px yellow;
  }

  91.5% {
    transform: scale(1.09) rotate(51.1deg) skew(79.1deg, 8.4deg) translate(-69.1px, -17.1px);
    filter: hue-rotate(153.2deg) blur(9.0px) saturate(153%);
    opacity: 0.46;
    background: magenta;
    text-shadow: -7px 0px 12px blue, 17px 8px 12px orange, -23px -2px 6px magenta, 19px -8px 47px #ff0080, -30px -25px 15px lime, 21px 9px 9px red, -6px -17px 29px lime, -28px -19px 24px orange, -11px 30px 38px orange, -28px 4px 48px #ff0080;
  }

  91.6% {
    transform: scale(1.85) rotate(-198.5deg) skew(76.3deg, 65.0deg) translate(91.9px, 99.3px);
    filter: hue-rotate(41.6deg) blur(4.3px) saturate(171%);
    opacity: 0.55;
    background: orange;
    text-shadow: -22px -20px 13px lime, 15px -18px 27px lime, 11px -20px 36px #ff0080, -26px 26px 44px lime, -23px 4px 9px lime, -23px -29px 28px magenta, -2px -2px 41px lime, -28px 15px 15px pink, -27px -14px 12px pink, -22px 23px 19px lime;
  }

  91.7% {
    transform: scale(1.19) rotate(-705.5deg) skew(14.1deg, -65.0deg) translate(46.0px, 56.0px);
    filter: hue-rotate(350.2deg) blur(7.4px) saturate(200%);
    opacity: 0.35;
    background: red;
    text-shadow: 6px 19px 20px yellow, 29px -27px 34px yellow, -16px -16px 42px blue, -5px -22px 35px cyan, -10px 5px 5px purple, 22px -30px 38px orange, 8px 16px 32px purple, 30px 15px 39px magenta, -2px -20px 47px lime, 17px -21px 15px #ff0080;
  }

  91.8% {
    transform: scale(1.73) rotate(555.2deg) skew(35.4deg, 60.2deg) translate(16.4px, 23.3px);
    filter: hue-rotate(88.8deg) blur(6.5px) saturate(122%);
    opacity: 0.9;
    background: lime;
    text-shadow: 26px 24px 42px purple, 18px -12px 18px orange, -15px -4px 15px pink, -3px -18px 34px cyan, -19px -22px 16px orange, -10px -21px 40px lime, -10px -1px 42px orange, -15px -16px 8px blue, 3px 17px 42px lime, 15px -26px 20px lime;
  }

  91.9% {
    transform: scale(1.64) rotate(79.6deg) skew(-45.1deg, -11.4deg) translate(-81.8px, -50.3px);
    filter: hue-rotate(59.2deg) blur(9.5px) saturate(282%);
    opacity: 0.85;
    background: magenta;
    text-shadow: 21px -27px 25px pink, 4px -10px 46px cyan, -9px -18px 5px lime, 7px -29px 49px blue, 18px 23px 17px #ff0080, 10px -26px 44px blue, 12px -12px 18px purple, -20px -27px 48px red, 21px 29px 45px red, 7px 29px 5px blue;
  }

  92.0% {
    transform: scale(1.17) rotate(-47.0deg) skew(-83.5deg, -3.2deg) translate(-40.9px, 45.7px);
    filter: hue-rotate(340.0deg) blur(4.7px) saturate(115%);
    opacity: 0.55;
    background: #ff0080;
    text-shadow: 3px -16px 47px lime, 6px 11px 32px yellow, -28px -17px 43px orange, 14px -21px 20px magenta, -23px 8px 8px magenta, -13px 9px 17px lime, -14px 4px 20px red, -8px -19px 35px pink, 17px -26px 27px red, 24px -20px 6px blue;
  }

  92.1% {
    transform: scale(1.7) rotate(13.0deg) skew(67.9deg, 88.1deg) translate(-54.6px, -49.0px);
    filter: hue-rotate(95.6deg) blur(7.3px) saturate(290%);
    opacity: 0.44;
    background: orange;
    text-shadow: 18px 29px 30px lime, 11px 2px 29px red, -30px -25px 48px magenta, 18px 5px 24px cyan, 20px 2px 41px cyan, 4px 13px 50px blue, 0px -22px 22px cyan, -22px -29px 22px purple, -3px 2px 18px magenta, -9px 9px 49px #ff0080;
  }

  92.2% {
    transform: scale(1.53) rotate(-128.0deg) skew(28.2deg, 61.1deg) translate(27.6px, -94.9px);
    filter: hue-rotate(329.8deg) blur(3.5px) saturate(239%);
    opacity: 0.78;
    background: magenta;
    text-shadow: 19px -9px 25px cyan, 10px 4px 16px purple, 2px -25px 31px blue, 4px 18px 13px yellow, 19px -13px 17px orange, 11px 6px 13px purple, 6px -19px 21px purple, -23px -11px 32px orange, 13px -13px 26px pink, -24px -10px 10px pink;
  }

  92.3% {
    transform: scale(1.77) rotate(-358.0deg) skew(33.4deg, 40.7deg) translate(79.0px, -20.3px);
    filter: hue-rotate(89.7deg) blur(6.2px) saturate(160%);
    opacity: 0.46;
    background: orange;
    text-shadow: 22px 6px 31px yellow, 16px -29px 46px orange, -5px -17px 40px lime, -29px -1px 47px blue, 14px -28px 14px red, -24px 16px 38px cyan, -14px 18px 13px purple, 26px 22px 7px lime, -24px -20px 46px yellow, -7px -18px 19px yellow;
  }

  92.4% {
    transform: scale(0.68) rotate(-347.4deg) skew(-3.2deg, 8.2deg) translate(-9.6px, -38.3px);
    filter: hue-rotate(67.5deg) blur(6.2px) saturate(139%);
    opacity: 0.56;
    background: orange;
    text-shadow: 30px 1px 27px #ff0080, -10px 18px 10px magenta, -19px 27px 20px magenta, -10px -13px 50px pink, -10px -9px 16px lime, -3px -3px 35px orange, 23px -10px 45px red, 14px -27px 15px blue, -22px -4px 32px #ff0080, -25px 1px 39px orange;
  }

  92.5% {
    transform: scale(1.95) rotate(-59.3deg) skew(-77.1deg, -14.4deg) translate(-12.0px, -41.3px);
    filter: hue-rotate(172.6deg) blur(7.6px) saturate(168%);
    opacity: 0.63;
    background: blue;
    text-shadow: -3px 28px 11px lime, -17px -6px 50px orange, -11px -26px 9px purple, 15px 22px 20px cyan, 7px 6px 9px magenta, -10px -1px 13px lime, -22px -7px 30px purple, -7px -3px 23px purple, -4px 10px 18px blue, -12px 21px 13px #ff0080;
  }

  92.6% {
    transform: scale(0.78) rotate(262.1deg) skew(73.6deg, -34.4deg) translate(-43.9px, -76.2px);
    filter: hue-rotate(214.5deg) blur(0.4px) saturate(181%);
    opacity: 0.52;
    background: blue;
    text-shadow: 29px 15px 40px pink, 12px -27px 28px blue, 3px 3px 36px red, -17px 29px 6px yellow, -4px 28px 32px red, 0px -1px 16px red, 17px -20px 7px #ff0080, -23px -11px 9px orange, 23px 4px 7px orange, -22px -21px 7px red;
  }

  92.7% {
    transform: scale(1.83) rotate(654.6deg) skew(-15.7deg, -51.4deg) translate(-94.8px, 62.5px);
    filter: hue-rotate(185.8deg) blur(3.6px) saturate(256%);
    opacity: 0.36;
    background: lime;
    text-shadow: 9px 24px 48px lime, -7px -20px 15px magenta, 2px -28px 17px orange, 16px 25px 6px cyan, 26px 1px 43px orange, -23px 28px 16px lime, 27px -16px 29px purple, -22px 2px 17px purple, -17px -27px 27px pink, 27px -15px 47px yellow;
  }

  92.8% {
    transform: scale(0.96) rotate(697.7deg) skew(87.1deg, -61.9deg) translate(2.6px, -6.3px);
    filter: hue-rotate(221.7deg) blur(3.9px) saturate(217%);
    opacity: 0.43;
    background: pink;
    text-shadow: 5px -1px 16px blue, -19px -28px 9px orange, -6px -10px 6px red, 28px -15px 7px magenta, 21px 22px 19px #ff0080, -16px 1px 33px red, 23px -18px 31px blue, 23px 20px 44px pink, 13px -23px 41px #ff0080, 23px -7px 27px orange;
  }

  92.9% {
    transform: scale(0.87) rotate(-438.9deg) skew(-33.7deg, 21.0deg) translate(-97.1px, -95.2px);
    filter: hue-rotate(96.3deg) blur(9.9px) saturate(75%);
    opacity: 0.63;
    background: blue;
    text-shadow: -17px 5px 36px purple, -2px -9px 23px yellow, -25px 5px 44px magenta, -30px -30px 38px blue, -5px 4px 26px red, -26px 26px 42px blue, -6px 23px 43px cyan, -17px -12px 43px purple, -8px 30px 26px yellow, 25px -9px 33px purple;
  }

  93.0% {
    transform: scale(1.45) rotate(7.2deg) skew(-85.8deg, -58.9deg) translate(20.0px, 24.8px);
    filter: hue-rotate(34.7deg) blur(4.5px) saturate(127%);
    opacity: 0.74;
    background: blue;
    text-shadow: 26px 30px 5px magenta, 20px 22px 13px magenta, -8px -28px 28px purple, -26px 20px 14px yellow, -1px 10px 20px yellow, -28px -7px 25px #ff0080, -22px -12px 10px yellow, 21px 15px 50px pink, -29px -7px 7px lime, 25px -14px 16px lime;
  }

  93.1% {
    transform: scale(0.56) rotate(630.7deg) skew(-46.9deg, -11.1deg) translate(10.5px, 87.4px);
    filter: hue-rotate(138.9deg) blur(3.9px) saturate(119%);
    opacity: 0.44;
    background: red;
    text-shadow: 19px 12px 20px magenta, 1px 23px 47px purple, 28px 12px 18px yellow, 1px -10px 10px #ff0080, 3px 24px 41px purple, 19px -5px 24px blue, 4px 25px 15px orange, 17px 6px 46px cyan, -6px -27px 24px yellow, -6px -18px 24px orange;
  }

  93.2% {
    transform: scale(1.65) rotate(91.2deg) skew(75.6deg, -50.5deg) translate(79.2px, 51.5px);
    filter: hue-rotate(330.9deg) blur(8.9px) saturate(180%);
    opacity: 0.69;
    background: magenta;
    text-shadow: -8px -13px 50px yellow, -17px 8px 8px #ff0080, -10px 24px 42px red, -12px -1px 24px purple, 10px 16px 7px magenta, -14px -2px 12px purple, 19px 6px 46px magenta, -8px 15px 21px lime, 8px -17px 29px blue, 3px 18px 28px orange;
  }

  93.3% {
    transform: scale(1.7) rotate(-41.6deg) skew(-50.6deg, 80.1deg) translate(33.8px, 4.7px);
    filter: hue-rotate(308.3deg) blur(0.4px) saturate(60%);
    opacity: 0.75;
    background: purple;
    text-shadow: -19px 30px 25px #ff0080, -8px 5px 29px lime, -14px 16px 47px magenta, -22px -25px 26px purple, 19px 26px 34px blue, 17px 14px 20px purple, 18px 29px 41px orange, -10px 25px 33px yellow, -12px 0px 21px lime, 15px -14px 18px pink;
  }

  93.4% {
    transform: scale(0.64) rotate(-636.7deg) skew(-49.0deg, -68.7deg) translate(84.6px, -76.6px);
    filter: hue-rotate(222.3deg) blur(8.5px) saturate(251%);
    opacity: 0.53;
    background: blue;
    text-shadow: 28px -7px 6px lime, -17px 9px 6px yellow, -1px 16px 41px pink, -29px 7px 43px lime, 20px 17px 13px orange, 7px 5px 40px pink, 20px 15px 29px purple, 7px -21px 41px magenta, 17px 8px 29px #ff0080, -22px -5px 22px yellow;
  }

  93.5% {
    transform: scale(1.0) rotate(-122.4deg) skew(-10.2deg, -17.1deg) translate(-74.1px, 21.1px);
    filter: hue-rotate(31.3deg) blur(1.5px) saturate(163%);
    opacity: 0.77;
    background: lime;
    text-shadow: -18px -17px 11px #ff0080, -15px 4px 14px pink, 18px -19px 35px pink, 23px 7px 9px #ff0080, -8px -20px 21px magenta, 14px 9px 27px orange, 29px -24px 9px purple, 30px -18px 19px purple, -12px 26px 43px #ff0080, -23px 26px 22px blue;
  }

  93.6% {
    transform: scale(1.29) rotate(81.0deg) skew(-60.6deg, -80.7deg) translate(-90.0px, -49.1px);
    filter: hue-rotate(163.6deg) blur(0.5px) saturate(298%);
    opacity: 0.42;
    background: purple;
    text-shadow: 12px 28px 13px cyan, -8px -16px 17px red, 12px 14px 16px pink, 1px -28px 33px #ff0080, -26px 3px 14px blue, -29px -1px 30px blue, -21px 27px 31px blue, 26px -15px 13px red, -22px 4px 39px pink, 4px 19px 44px lime;
  }

  93.7% {
    transform: scale(1.13) rotate(-382.2deg) skew(55.3deg, 48.2deg) translate(-39.2px, -66.4px);
    filter: hue-rotate(86.0deg) blur(7.5px) saturate(91%);
    opacity: 0.95;
    background: yellow;
    text-shadow: 29px 11px 46px lime, 5px -4px 8px cyan, 24px 17px 10px yellow, -10px -11px 30px purple, 13px -19px 15px pink, 3px 9px 45px cyan, -16px 23px 11px orange, 14px 20px 23px cyan, -16px -29px 21px lime, -7px -4px 41px pink;
  }

  93.8% {
    transform: scale(0.96) rotate(-296.4deg) skew(35.3deg, -37.6deg) translate(21.9px, 63.6px);
    filter: hue-rotate(339.2deg) blur(6.9px) saturate(57%);
    opacity: 0.58;
    background: pink;
    text-shadow: 19px 27px 42px red, 6px -18px 25px red, -16px -23px 13px yellow, 10px 3px 32px purple, -5px 11px 8px blue, -26px -6px 34px orange, -19px 10px 28px pink, -9px -21px 24px yellow, -4px -7px 23px lime, 3px -24px 10px blue;
  }

  93.9% {
    transform: scale(1.0) rotate(-556.0deg) skew(73.0deg, 1.7deg) translate(-27.1px, 66.2px);
    filter: hue-rotate(254.9deg) blur(10.0px) saturate(133%);
    opacity: 0.48;
    background: red;
    text-shadow: -9px 4px 23px purple, -3px 28px 19px blue, -1px -23px 22px magenta, 4px -15px 11px orange, 16px 23px 47px orange, -23px 29px 37px cyan, -24px -28px 29px magenta, -24px 10px 35px magenta, 2px -27px 19px purple, -9px -3px 19px orange;
  }

  94.0% {
    transform: scale(0.78) rotate(-281.1deg) skew(55.3deg, -77.3deg) translate(34.7px, 52.4px);
    filter: hue-rotate(285.6deg) blur(4.1px) saturate(67%);
    opacity: 0.33;
    background: lime;
    text-shadow: 6px -21px 23px magenta, -12px 13px 36px #ff0080, -30px -14px 23px yellow, -3px -12px 24px magenta, 28px -25px 14px orange, -18px 28px 18px magenta, -26px 14px 42px purple, 19px 23px 30px lime, 7px -9px 16px pink, 28px -23px 31px orange;
  }

  94.1% {
    transform: scale(1.73) rotate(24.2deg) skew(-51.1deg, -26.4deg) translate(36.4px, -39.2px);
    filter: hue-rotate(322.3deg) blur(2.5px) saturate(187%);
    opacity: 0.39;
    background: cyan;
    text-shadow: -16px -21px 46px cyan, -1px -1px 13px cyan, 25px -24px 25px pink, -12px 27px 44px red, -30px 19px 31px magenta, -20px 6px 45px lime, -10px 0px 15px magenta, -9px 13px 42px cyan, 12px 7px 37px lime, -19px -13px 6px lime;
  }

  94.2% {
    transform: scale(0.57) rotate(490.2deg) skew(-33.5deg, -78.2deg) translate(42.5px, 22.4px);
    filter: hue-rotate(171.5deg) blur(5.6px) saturate(260%);
    opacity: 0.53;
    background: pink;
    text-shadow: 14px -17px 16px magenta, 29px -19px 28px cyan, -19px 11px 49px blue, 2px -7px 42px yellow, 13px -17px 35px red, 19px -3px 5px magenta, -25px -20px 37px blue, -13px -9px 19px blue, 9px 7px 21px magenta, -11px 2px 11px magenta;
  }

  94.3% {
    transform: scale(1.99) rotate(90.1deg) skew(52.2deg, 28.0deg) translate(-34.1px, -89.0px);
    filter: hue-rotate(184.3deg) blur(0.8px) saturate(141%);
    opacity: 0.47;
    background: purple;
    text-shadow: 11px -27px 10px purple, 29px -2px 15px purple, -26px -16px 34px cyan, 26px -5px 31px blue, 2px -19px 35px magenta, -19px 23px 24px red, 2px 20px 10px orange, 23px -28px 16px lime, 29px 23px 21px #ff0080, 11px 0px 19px blue;
  }

  94.4% {
    transform: scale(1.75) rotate(-455.2deg) skew(-10.5deg, -55.7deg) translate(-79.8px, 52.6px);
    filter: hue-rotate(318.2deg) blur(4.4px) saturate(124%);
    opacity: 0.6;
    background: #ff0080;
    text-shadow: -16px 18px 45px blue, 4px -16px 39px red, 21px 13px 28px pink, -21px -7px 30px blue, -3px -2px 21px #ff0080, 17px 0px 43px #ff0080, 23px -23px 17px cyan, -26px 30px 24px cyan, -20px 0px 43px yellow, 28px 16px 37px magenta;
  }

  94.5% {
    transform: scale(0.88) rotate(131.9deg) skew(88.3deg, -43.0deg) translate(-47.8px, 84.4px);
    filter: hue-rotate(277.6deg) blur(1.2px) saturate(236%);
    opacity: 0.97;
    background: #ff0080;
    text-shadow: -4px 11px 7px cyan, -12px 12px 42px magenta, -4px 16px 46px #ff0080, -2px 25px 24px yellow, -10px -2px 5px pink, 29px -21px 42px orange, 18px 14px 22px lime, 6px -13px 39px cyan, -3px 3px 14px #ff0080, 23px -27px 48px orange;
  }

  94.6% {
    transform: scale(1.83) rotate(-175.6deg) skew(-39.4deg, 19.6deg) translate(78.8px, 27.6px);
    filter: hue-rotate(286.1deg) blur(3.6px) saturate(134%);
    opacity: 0.59;
    background: magenta;
    text-shadow: 4px 11px 39px pink, -20px -28px 20px pink, -6px -13px 36px red, 16px 17px 11px purple, -24px -14px 19px red, -21px 26px 15px purple, -22px 9px 11px purple, 28px 0px 47px purple, -9px 20px 6px cyan, -2px -26px 16px magenta;
  }

  94.7% {
    transform: scale(0.96) rotate(-618.2deg) skew(23.9deg, -75.2deg) translate(14.2px, -22.0px);
    filter: hue-rotate(285.7deg) blur(8.1px) saturate(243%);
    opacity: 0.85;
    background: magenta;
    text-shadow: 30px -18px 8px magenta, 7px -5px 6px orange, -24px 25px 37px yellow, -26px 25px 11px cyan, 15px 29px 9px cyan, -13px 3px 6px cyan, 23px 26px 47px #ff0080, -25px -25px 42px #ff0080, -20px -16px 29px blue, 4px 6px 49px #ff0080;
  }

  94.8% {
    transform: scale(1.84) rotate(562.8deg) skew(-69.9deg, 37.6deg) translate(71.3px, -81.7px);
    filter: hue-rotate(233.7deg) blur(9.8px) saturate(236%);
    opacity: 0.94;
    background: orange;
    text-shadow: 29px -18px 31px pink, -21px -7px 25px purple, -21px 6px 32px purple, -10px -10px 41px yellow, -6px 30px 24px orange, -4px 17px 11px purple, 6px -28px 28px pink, 9px -1px 7px #ff0080, 14px -28px 40px yellow, 9px -18px 32px lime;
  }

  94.9% {
    transform: scale(0.73) rotate(-46.1deg) skew(75.0deg, -85.6deg) translate(81.6px, 67.6px);
    filter: hue-rotate(152.6deg) blur(1.7px) saturate(252%);
    opacity: 0.77;
    background: blue;
    text-shadow: 24px 28px 45px lime, 10px 6px 24px #ff0080, 12px 3px 38px red, -18px -21px 9px pink, 7px 3px 11px yellow, 15px -5px 35px blue, -18px 20px 24px red, 4px 24px 41px purple, -13px -10px 15px magenta, -13px 24px 18px blue;
  }

  95.0% {
    transform: scale(0.8) rotate(599.4deg) skew(10.0deg, 40.7deg) translate(-39.2px, 46.4px);
    filter: hue-rotate(304.4deg) blur(1.3px) saturate(300%);
    opacity: 0.32;
    background: purple;
    text-shadow: -2px 30px 42px pink, -28px -22px 13px blue, 27px -20px 30px cyan, 22px -24px 46px magenta, 2px 21px 21px magenta, -27px -3px 50px orange, -20px -21px 33px blue, 29px -23px 38px yellow, 26px 1px 24px yellow, 0px -20px 14px magenta;
  }

  95.1% {
    transform: scale(1.37) rotate(365.1deg) skew(7.2deg, -4.9deg) translate(-17.1px, 59.1px);
    filter: hue-rotate(66.4deg) blur(9.2px) saturate(135%);
    opacity: 0.47;
    background: lime;
    text-shadow: -27px -29px 8px red, -24px -10px 33px purple, 30px -23px 29px lime, -5px -4px 25px magenta, -20px -29px 39px orange, 21px 15px 31px #ff0080, 27px -19px 12px blue, -14px 11px 14px cyan, 4px -1px 19px purple, -27px -15px 42px purple;
  }

  95.2% {
    transform: scale(1.46) rotate(142.1deg) skew(-77.1deg, 25.6deg) translate(98.2px, 81.5px);
    filter: hue-rotate(245.6deg) blur(0.3px) saturate(222%);
    opacity: 0.31;
    background: blue;
    text-shadow: 2px 25px 11px magenta, 3px -28px 28px yellow, 11px -15px 49px red, 6px 26px 47px lime, 0px -7px 31px blue, -19px 29px 48px purple, -8px -9px 47px pink, 3px 8px 47px yellow, 9px 18px 43px red, 13px 8px 25px cyan;
  }

  95.3% {
    transform: scale(1.9) rotate(-539.4deg) skew(75.4deg, 18.2deg) translate(57.7px, 12.7px);
    filter: hue-rotate(354.5deg) blur(6.9px) saturate(258%);
    opacity: 0.88;
    background: magenta;
    text-shadow: -6px -24px 17px #ff0080, 25px 21px 46px red, 2px -11px 44px red, 16px 3px 49px purple, 20px -25px 46px red, 25px -23px 32px lime, 24px 18px 47px orange, 19px 30px 47px yellow, 6px -16px 33px magenta, -15px -30px 33px red;
  }

  95.4% {
    transform: scale(0.57) rotate(-113.4deg) skew(59.4deg, 77.8deg) translate(-1.3px, -11.6px);
    filter: hue-rotate(351.6deg) blur(4.8px) saturate(183%);
    opacity: 0.43;
    background: yellow;
    text-shadow: -4px -25px 20px lime, -9px 12px 46px magenta, -10px 17px 21px pink, -8px 5px 37px lime, 3px 21px 34px blue, 0px -10px 48px magenta, 27px -11px 48px magenta, 29px 10px 15px pink, 7px -9px 50px lime, -5px 2px 8px purple;
  }

  95.5% {
    transform: scale(1.1) rotate(-625.3deg) skew(-88.1deg, 39.9deg) translate(84.8px, -69.9px);
    filter: hue-rotate(179.9deg) blur(2.2px) saturate(117%);
    opacity: 0.61;
    background: magenta;
    text-shadow: 9px -8px 15px purple, -5px -4px 37px yellow, -11px 8px 43px lime, -24px 25px 10px orange, 23px 25px 39px blue, 16px -3px 41px blue, -5px 9px 25px pink, 29px -23px 43px orange, 8px 12px 19px red, 10px 16px 35px #ff0080;
  }

  95.6% {
    transform: scale(1.51) rotate(-558.9deg) skew(62.3deg, 52.4deg) translate(78.9px, -54.2px);
    filter: hue-rotate(124.4deg) blur(0.9px) saturate(206%);
    opacity: 0.48;
    background: yellow;
    text-shadow: 11px -4px 20px purple, -18px 12px 21px pink, 1px -19px 18px red, -27px -15px 34px purple, 16px -16px 18px cyan, -1px 5px 43px blue, 8px -22px 24px magenta, 19px 14px 14px cyan, 28px -9px 21px red, 16px -13px 12px red;
  }

  95.7% {
    transform: scale(0.72) rotate(-25.4deg) skew(-81.3deg, -89.4deg) translate(43.9px, 49.2px);
    filter: hue-rotate(55.6deg) blur(3.8px) saturate(292%);
    opacity: 0.38;
    background: magenta;
    text-shadow: -12px -4px 24px purple, -12px -6px 50px red, 14px -20px 21px orange, 7px 18px 37px purple, 7px 23px 32px purple, -15px 25px 25px blue, 7px -10px 45px pink, -29px -5px 31px lime, 14px -16px 15px red, -24px -2px 47px pink;
  }

  95.8% {
    transform: scale(1.56) rotate(-286.5deg) skew(5.5deg, 45.5deg) translate(30.0px, 61.3px);
    filter: hue-rotate(52.8deg) blur(4.1px) saturate(142%);
    opacity: 0.92;
    background: yellow;
    text-shadow: -10px -7px 49px magenta, -16px 17px 43px red, -29px 21px 26px orange, -23px -4px 22px cyan, 6px -19px 9px cyan, 8px -6px 25px magenta, 23px -5px 6px magenta, -23px 26px 48px yellow, -15px -20px 25px pink, -5px 4px 20px orange;
  }

  95.9% {
    transform: scale(0.86) rotate(678.1deg) skew(-49.3deg, -56.5deg) translate(-24.1px, -82.5px);
    filter: hue-rotate(267.7deg) blur(8.9px) saturate(231%);
    opacity: 0.6;
    background: purple;
    text-shadow: 18px -26px 25px pink, 17px 12px 17px cyan, 15px -28px 20px pink, -1px 0px 39px orange, -10px 7px 30px cyan, 6px 0px 48px #ff0080, -9px 4px 39px purple, -6px 25px 28px #ff0080, 8px 0px 43px cyan, -28px -22px 6px purple;
  }

  96.0% {
    transform: scale(0.66) rotate(235.5deg) skew(-5.2deg, 22.7deg) translate(-63.5px, 48.1px);
    filter: hue-rotate(225.5deg) blur(0.1px) saturate(256%);
    opacity: 0.97;
    background: magenta;
    text-shadow: -22px -30px 10px purple, -5px -18px 24px #ff0080, 8px -19px 36px orange, 9px 6px 29px cyan, -29px -24px 32px lime, -7px 26px 45px blue, -23px -23px 27px lime, 0px -15px 40px cyan, -10px -19px 50px blue, 7px -12px 29px yellow;
  }

  96.1% {
    transform: scale(1.32) rotate(-608.4deg) skew(-85.0deg, 73.9deg) translate(64.1px, 29.9px);
    filter: hue-rotate(64.2deg) blur(9.3px) saturate(213%);
    opacity: 0.31;
    background: orange;
    text-shadow: -8px 21px 35px magenta, 6px -1px 11px blue, -5px -10px 14px lime, -27px -30px 31px pink, 24px 13px 46px pink, -4px 9px 34px orange, 15px 8px 6px yellow, -7px 25px 8px #ff0080, 2px -2px 8px red, -24px 4px 14px cyan;
  }

  96.2% {
    transform: scale(0.88) rotate(-467.1deg) skew(75.3deg, 9.7deg) translate(42.4px, 39.9px);
    filter: hue-rotate(291.9deg) blur(6.2px) saturate(207%);
    opacity: 0.4;
    background: red;
    text-shadow: 20px -5px 12px blue, 26px -21px 7px #ff0080, -22px -21px 34px #ff0080, -3px 21px 18px purple, -12px -23px 41px purple, 8px 20px 9px magenta, -1px 23px 36px yellow, -19px -30px 41px purple, 29px -2px 48px yellow, 29px -29px 32px magenta;
  }

  96.3% {
    transform: scale(1.8) rotate(536.4deg) skew(-21.9deg, 86.6deg) translate(-90.2px, 0.9px);
    filter: hue-rotate(316.4deg) blur(1.3px) saturate(243%);
    opacity: 0.34;
    background: #ff0080;
    text-shadow: 17px -4px 17px magenta, 17px 6px 13px yellow, 16px -29px 10px pink, -30px 19px 22px cyan, -1px 13px 20px pink, 10px -17px 22px blue, -6px -10px 24px yellow, 11px 15px 30px purple, 12px 18px 42px yellow, -28px 25px 41px red;
  }

  96.4% {
    transform: scale(1.18) rotate(696.9deg) skew(-7.7deg, -15.1deg) translate(-41.7px, -63.2px);
    filter: hue-rotate(51.7deg) blur(3.0px) saturate(223%);
    opacity: 0.37;
    background: red;
    text-shadow: 19px 23px 47px cyan, -2px 0px 41px magenta, 23px 23px 39px purple, -26px -22px 10px pink, -15px 12px 48px blue, -5px 21px 14px blue, 20px 23px 12px purple, -21px -17px 13px orange, -7px 5px 29px #ff0080, -14px -1px 13px cyan;
  }

  96.5% {
    transform: scale(1.79) rotate(90.9deg) skew(0.4deg, 4.5deg) translate(-32.7px, 32.0px);
    filter: hue-rotate(211.2deg) blur(3.1px) saturate(138%);
    opacity: 0.72;
    background: magenta;
    text-shadow: 26px -25px 13px #ff0080, 5px 3px 21px orange, 16px -30px 19px red, 12px -29px 37px #ff0080, -19px -23px 35px blue, -18px -6px 12px #ff0080, -29px 20px 34px orange, -19px 0px 41px orange, -26px 30px 35px red, 8px -3px 39px orange;
  }

  96.6% {
    transform: scale(1.34) rotate(-416.1deg) skew(86.1deg, -48.0deg) translate(35.9px, -95.6px);
    filter: hue-rotate(326.8deg) blur(3.1px) saturate(185%);
    opacity: 0.36;
    background: lime;
    text-shadow: 5px 7px 8px cyan, 13px 27px 19px pink, -4px -23px 25px blue, -25px -14px 35px lime, 9px -11px 15px #ff0080, -6px -25px 13px yellow, 12px 18px 8px lime, 7px -1px 22px red, 16px 6px 25px pink, 19px -7px 45px lime;
  }

  96.7% {
    transform: scale(0.74) rotate(503.6deg) skew(-22.3deg, 16.0deg) translate(15.9px, 58.7px);
    filter: hue-rotate(334.1deg) blur(4.9px) saturate(81%);
    opacity: 0.7;
    background: pink;
    text-shadow: -21px -20px 11px cyan, 27px -25px 37px pink, 28px 15px 47px yellow, -8px -16px 31px orange, 29px 15px 17px lime, 29px -14px 14px pink, -18px 29px 12px purple, 25px -25px 19px yellow, -27px -28px 34px purple, -3px -19px 14px yellow;
  }

  96.8% {
    transform: scale(0.82) rotate(-299.5deg) skew(82.8deg, 24.5deg) translate(-13.9px, 5.0px);
    filter: hue-rotate(112.9deg) blur(7.2px) saturate(106%);
    opacity: 0.42;
    background: purple;
    text-shadow: -6px 28px 47px yellow, 18px -2px 32px lime, -30px 17px 33px purple, 22px 29px 10px cyan, 10px -11px 41px orange, 11px 0px 30px lime, 17px 19px 21px #ff0080, -19px 0px 39px orange, -5px 20px 14px yellow, 13px -1px 7px pink;
  }

  96.9% {
    transform: scale(0.7) rotate(-121.9deg) skew(72.6deg, 72.7deg) translate(-29.7px, 47.1px);
    filter: hue-rotate(255.4deg) blur(3.7px) saturate(128%);
    opacity: 0.61;
    background: yellow;
    text-shadow: 17px 21px 27px cyan, 28px -1px 39px magenta, 11px -24px 33px pink, -29px 15px 8px orange, 12px -11px 17px blue, -2px -20px 25px magenta, -16px 28px 35px orange, 6px -10px 39px #ff0080, 10px 20px 8px orange, 11px 22px 11px yellow;
  }

  97.0% {
    transform: scale(1.73) rotate(-306.8deg) skew(-16.4deg, -0.5deg) translate(-87.0px, -83.2px);
    filter: hue-rotate(308.6deg) blur(7.3px) saturate(277%);
    opacity: 0.8;
    background: purple;
    text-shadow: -8px 4px 6px yellow, 16px 14px 36px blue, -12px 17px 31px pink, 7px 29px 38px purple, 4px -16px 18px purple, 16px 22px 39px magenta, -8px -7px 19px purple, 1px 20px 48px red, -2px -18px 46px #ff0080, 7px 13px 33px blue;
  }

  97.1% {
    transform: scale(1.35) rotate(379.9deg) skew(0.3deg, 57.3deg) translate(-93.9px, -87.4px);
    filter: hue-rotate(3.2deg) blur(6.6px) saturate(284%);
    opacity: 0.62;
    background: #ff0080;
    text-shadow: 9px -16px 6px pink, -6px 18px 37px blue, 18px 22px 32px orange, -28px 24px 21px orange, -24px 29px 35px purple, 2px -24px 12px magenta, -9px 20px 33px lime, -21px 0px 25px blue, 5px -3px 9px yellow, -28px 27px 21px magenta;
  }

  97.2% {
    transform: scale(1.39) rotate(273.7deg) skew(-26.6deg, 84.2deg) translate(-42.7px, 98.9px);
    filter: hue-rotate(100.1deg) blur(4.8px) saturate(90%);
    opacity: 0.81;
    background: purple;
    text-shadow: 27px 18px 21px cyan, 23px 30px 40px yellow, 18px -6px 27px cyan, 23px 27px 28px #ff0080, -3px 24px 19px lime, -2px 7px 45px orange, -13px -16px 24px lime, -12px -9px 17px pink, -27px 25px 28px red, -27px 14px 49px orange;
  }

  97.3% {
    transform: scale(0.69) rotate(690.3deg) skew(-38.2deg, 70.0deg) translate(29.0px, 72.1px);
    filter: hue-rotate(125.3deg) blur(1.9px) saturate(113%);
    opacity: 0.68;
    background: yellow;
    text-shadow: -13px -8px 35px blue, -4px -3px 17px red, -20px -20px 46px pink, -22px -27px 42px #ff0080, -29px -28px 44px pink, 30px -21px 7px cyan, 25px -22px 31px blue, 14px -23px 13px blue, -5px -19px 14px #ff0080, 26px -2px 24px lime;
  }

  97.4% {
    transform: scale(0.55) rotate(-595.5deg) skew(41.4deg, 21.6deg) translate(-92.7px, 33.0px);
    filter: hue-rotate(92.7deg) blur(0.3px) saturate(105%);
    opacity: 0.73;
    background: red;
    text-shadow: -21px -30px 47px orange, 24px -5px 19px yellow, -22px 27px 17px pink, -4px 15px 8px #ff0080, -6px -29px 27px blue, -29px -14px 48px yellow, -30px -24px 26px yellow, 5px -29px 28px blue, -4px -19px 22px #ff0080, -14px -5px 5px lime;
  }

  97.5% {
    transform: scale(1.22) rotate(-629.8deg) skew(-12.8deg, -69.9deg) translate(-68.9px, -40.0px);
    filter: hue-rotate(67.8deg) blur(7.5px) saturate(71%);
    opacity: 0.53;
    background: blue;
    text-shadow: -29px 11px 20px #ff0080, 15px -1px 5px lime, -17px 4px 42px purple, -29px 30px 36px cyan, -24px 21px 13px magenta, 9px -4px 41px orange, 15px -17px 28px #ff0080, 15px 3px 45px cyan, 8px -25px 50px #ff0080, -10px 4px 8px red;
  }

  97.6% {
    transform: scale(1.65) rotate(-471.7deg) skew(82.1deg, 15.9deg) translate(90.0px, 33.6px);
    filter: hue-rotate(205.5deg) blur(0.6px) saturate(211%);
    opacity: 0.43;
    background: red;
    text-shadow: 19px -15px 33px cyan, -26px -4px 25px #ff0080, -19px -1px 12px #ff0080, -10px 4px 11px cyan, -20px -30px 46px lime, -28px 22px 18px yellow, 9px -17px 49px purple, 16px -9px 14px red, 19px 10px 13px purple, 5px -30px 46px orange;
  }

  97.7% {
    transform: scale(1.78) rotate(55.8deg) skew(19.6deg, -27.8deg) translate(-91.5px, -22.7px);
    filter: hue-rotate(212.8deg) blur(2.3px) saturate(129%);
    opacity: 0.43;
    background: orange;
    text-shadow: -1px -6px 22px lime, -2px -25px 30px #ff0080, -3px -29px 15px blue, -3px 13px 40px purple, -17px -7px 26px purple, -21px 14px 39px pink, 21px -24px 27px pink, 29px 27px 16px red, -29px 22px 48px cyan, 26px 19px 50px magenta;
  }

  97.8% {
    transform: scale(1.6) rotate(-115.7deg) skew(-78.8deg, -16.9deg) translate(-5.7px, 5.0px);
    filter: hue-rotate(79.8deg) blur(8.4px) saturate(283%);
    opacity: 1.0;
    background: blue;
    text-shadow: 6px -13px 26px red, -3px 3px 21px purple, -2px -20px 34px red, -28px 8px 25px magenta, -6px 15px 44px purple, 25px -12px 32px pink, 12px 7px 45px pink, -17px 19px 29px cyan, 9px 22px 10px magenta, 8px -26px 37px pink;
  }

  97.9% {
    transform: scale(0.7) rotate(114.9deg) skew(-53.8deg, 63.4deg) translate(30.5px, -67.1px);
    filter: hue-rotate(359.0deg) blur(7.5px) saturate(81%);
    opacity: 0.56;
    background: purple;
    text-shadow: -27px -1px 8px pink, 0px 1px 13px cyan, -10px 13px 7px pink, 5px -27px 13px #ff0080, 8px -27px 25px cyan, -18px 9px 25px #ff0080, -7px 12px 33px cyan, 3px 5px 31px blue, -9px -7px 17px orange, -13px -4px 45px purple;
  }

  98.0% {
    transform: scale(0.51) rotate(513.9deg) skew(-15.8deg, -22.3deg) translate(-24.6px, 41.9px);
    filter: hue-rotate(85.9deg) blur(4.8px) saturate(261%);
    opacity: 0.75;
    background: #ff0080;
    text-shadow: 14px 14px 6px red, 12px -30px 13px #ff0080, 5px -19px 27px red, -22px -16px 20px yellow, 24px -5px 16px pink, -8px 14px 38px yellow, -22px 22px 14px yellow, 16px 16px 43px red, 29px 14px 46px blue, -5px 22px 21px lime;
  }

  98.1% {
    transform: scale(1.44) rotate(-142.3deg) skew(-17.5deg, 10.3deg) translate(-75.1px, -46.8px);
    filter: hue-rotate(82.6deg) blur(8.8px) saturate(152%);
    opacity: 0.57;
    background: orange;
    text-shadow: 2px 2px 6px purple, 17px 7px 41px yellow, -28px -29px 6px purple, 19px 7px 34px orange, 23px 7px 46px cyan, -13px -18px 18px cyan, 24px 21px 42px yellow, -24px -9px 23px #ff0080, -18px 15px 20px pink, 7px -2px 29px lime;
  }

  98.2% {
    transform: scale(0.64) rotate(293.3deg) skew(52.3deg, -44.3deg) translate(62.6px, 82.9px);
    filter: hue-rotate(75.1deg) blur(4.5px) saturate(203%);
    opacity: 0.41;
    background: magenta;
    text-shadow: 9px -2px 41px orange, 0px -23px 25px magenta, 1px -4px 15px magenta, -26px 29px 23px cyan, -1px -11px 39px orange, -29px 21px 31px lime, -18px 23px 6px blue, 9px -24px 44px yellow, -19px 23px 24px magenta, -19px -7px 29px orange;
  }

  98.3% {
    transform: scale(1.03) rotate(-290.1deg) skew(14.3deg, -50.2deg) translate(-24.1px, -5.1px);
    filter: hue-rotate(68.5deg) blur(9.4px) saturate(260%);
    opacity: 0.48;
    background: red;
    text-shadow: -2px 10px 14px yellow, -15px 26px 19px purple, 21px -22px 27px magenta, -22px -11px 17px red, 28px -26px 42px magenta, 0px -16px 21px cyan, -2px -28px 22px red, -27px -6px 45px magenta, -2px -28px 11px cyan, 6px 1px 36px yellow;
  }

  98.4% {
    transform: scale(0.52) rotate(35.5deg) skew(80.2deg, 17.3deg) translate(-41.6px, -15.0px);
    filter: hue-rotate(281.7deg) blur(1.7px) saturate(73%);
    opacity: 0.31;
    background: orange;
    text-shadow: -12px -17px 17px pink, 2px 17px 18px blue, -12px 12px 30px purple, 28px 25px 17px red, -6px -30px 37px magenta, 29px 7px 14px yellow, -5px -26px 22px orange, 22px -13px 39px purple, 8px 30px 5px #ff0080, 8px 12px 6px red;
  }

  98.5% {
    transform: scale(1.76) rotate(369.3deg) skew(29.5deg, 68.5deg) translate(98.8px, 68.8px);
    filter: hue-rotate(203.7deg) blur(1.1px) saturate(270%);
    opacity: 0.66;
    background: purple;
    text-shadow: -20px 26px 12px magenta, -26px -1px 43px red, -12px -22px 14px magenta, -18px -11px 24px red, 30px -6px 48px lime, 27px 1px 44px cyan, -7px -15px 20px purple, 29px 11px 49px magenta, -30px -20px 14px lime, -9px -13px 5px blue;
  }

  98.6% {
    transform: scale(0.75) rotate(700.7deg) skew(-47.9deg, 39.4deg) translate(57.8px, -5.5px);
    filter: hue-rotate(30.1deg) blur(6.2px) saturate(276%);
    opacity: 0.44;
    background: pink;
    text-shadow: 20px 9px 36px orange, -7px 14px 49px #ff0080, -26px -1px 13px purple, 16px 27px 16px purple, -6px -30px 41px orange, 1px 27px 8px yellow, 25px -3px 21px blue, -11px 29px 14px yellow, 29px -13px 44px magenta, 18px -29px 41px purple;
  }

  98.7% {
    transform: scale(1.45) rotate(19.9deg) skew(-47.2deg, 36.8deg) translate(55.3px, 83.0px);
    filter: hue-rotate(166.6deg) blur(5.0px) saturate(182%);
    opacity: 0.75;
    background: blue;
    text-shadow: 4px -15px 39px yellow, -6px -28px 34px red, 17px 30px 6px red, -7px 8px 6px purple, 13px 2px 48px #ff0080, 21px 9px 25px magenta, 17px 29px 35px blue, 21px 2px 37px purple, 24px -8px 24px purple, 22px -19px 6px pink;
  }

  98.8% {
    transform: scale(1.91) rotate(447.5deg) skew(69.5deg, -1.6deg) translate(-12.4px, 47.0px);
    filter: hue-rotate(183.1deg) blur(4.4px) saturate(109%);
    opacity: 0.47;
    background: #ff0080;
    text-shadow: 24px -1px 27px lime, 27px -11px 38px #ff0080, -14px -23px 44px pink, -11px -25px 50px cyan, -4px -24px 5px yellow, 24px 20px 9px blue, 15px -22px 28px #ff0080, 2px -8px 22px #ff0080, -21px -28px 46px magenta, 26px -9px 20px #ff0080;
  }

  98.9% {
    transform: scale(0.86) rotate(-713.1deg) skew(39.9deg, 78.3deg) translate(25.8px, -5.2px);
    filter: hue-rotate(118.4deg) blur(4.9px) saturate(200%);
    opacity: 0.67;
    background: blue;
    text-shadow: -4px -4px 12px magenta, 11px -3px 8px blue, 6px -17px 39px lime, 11px -17px 28px red, -24px -9px 22px blue, -29px 15px 21px purple, -14px -18px 46px cyan, 25px 9px 24px orange, 26px -5px 41px red, 23px -5px 12px orange;
  }

  99.0% {
    transform: scale(1.56) rotate(230.9deg) skew(-20.0deg, 21.6deg) translate(34.6px, -12.4px);
    filter: hue-rotate(298.1deg) blur(6.9px) saturate(107%);
    opacity: 0.32;
    background: yellow;
    text-shadow: 19px 29px 16px #ff0080, -1px 28px 25px yellow, -7px 9px 13px red, 29px -16px 18px cyan, -17px -3px 31px cyan, -28px -12px 32px blue, 11px -6px 16px purple, 22px -23px 17px #ff0080, 19px 25px 7px red, -6px -13px 16px cyan;
  }

  99.1% {
    transform: scale(1.39) rotate(-317.0deg) skew(-84.1deg, 57.8deg) translate(85.6px, 88.6px);
    filter: hue-rotate(236.2deg) blur(9.2px) saturate(64%);
    opacity: 0.85;
    background: orange;
    text-shadow: -6px 23px 41px blue, 18px -15px 16px yellow, -16px -21px 43px lime, -19px -1px 44px orange, 21px 19px 43px yellow, 20px 5px 45px orange, -12px 27px 43px red, -7px 8px 43px pink, 6px 1px 7px lime, -6px -28px 42px lime;
  }

  99.2% {
    transform: scale(1.19) rotate(342.9deg) skew(-3.7deg, -2.3deg) translate(72.1px, -73.2px);
    filter: hue-rotate(161.4deg) blur(1.8px) saturate(75%);
    opacity: 0.69;
    background: blue;
    text-shadow: -10px 7px 36px yellow, -4px -16px 31px lime, -22px 3px 41px magenta, -23px 2px 26px magenta, -27px 26px 50px yellow, 1px 2px 48px orange, -3px -7px 16px lime, -28px -29px 12px pink, 5px -20px 31px red, 0px 0px 49px red;
  }

  99.3% {
    transform: scale(0.54) rotate(337.4deg) skew(23.3deg, -59.5deg) translate(13.6px, 47.2px);
    filter: hue-rotate(292.7deg) blur(0.9px) saturate(152%);
    opacity: 0.83;
    background: red;
    text-shadow: 20px -18px 7px yellow, -18px -19px 17px red, -5px -21px 29px lime, -10px 12px 43px blue, -12px -30px 23px lime, 26px -24px 10px orange, 0px 8px 26px lime, 13px -16px 19px purple, 15px 6px 29px purple, -4px 23px 47px orange;
  }

  99.4% {
    transform: scale(0.57) rotate(-537.2deg) skew(11.5deg, -40.7deg) translate(35.1px, 57.3px);
    filter: hue-rotate(197.8deg) blur(9.5px) saturate(195%);
    opacity: 0.84;
    background: blue;
    text-shadow: 2px 21px 14px #ff0080, 22px -28px 30px blue, -8px 25px 6px red, -21px -30px 41px lime, 14px 11px 41px magenta, 4px 29px 16px pink, 11px -22px 5px cyan, 10px -28px 37px magenta, -12px 2px 25px magenta, 29px -30px 49px purple;
  }

  99.5% {
    transform: scale(1.53) rotate(368.0deg) skew(1.1deg, 84.2deg) translate(-33.5px, -37.1px);
    filter: hue-rotate(53.7deg) blur(3.6px) saturate(183%);
    opacity: 0.72;
    background: purple;
    text-shadow: -1px 19px 50px magenta, -14px 2px 24px blue, -5px -29px 29px #ff0080, -2px -26px 9px #ff0080, -14px 0px 16px lime, -3px 7px 33px magenta, 29px 12px 45px red, -10px -18px 11px red, 29px -14px 15px blue, -29px 20px 23px magenta;
  }

  99.6% {
    transform: scale(1.6) rotate(-514.2deg) skew(87.3deg, -48.9deg) translate(79.3px, -42.0px);
    filter: hue-rotate(37.2deg) blur(7.3px) saturate(58%);
    opacity: 0.93;
    background: purple;
    text-shadow: 17px -5px 33px blue, -13px 21px 16px purple, -3px 19px 22px orange, 7px -24px 24px yellow, -19px -17px 24px yellow, 19px 9px 46px purple, 18px 16px 32px #ff0080, 20px 14px 7px orange, 3px -13px 10px lime, 12px -11px 38px blue;
  }

  99.7% {
    transform: scale(1.33) rotate(130.3deg) skew(84.2deg, -78.7deg) translate(-62.3px, -2.9px);
    filter: hue-rotate(89.2deg) blur(2.7px) saturate(192%);
    opacity: 0.8;
    background: orange;
    text-shadow: -2px -30px 31px purple, -9px 19px 50px orange, -19px -15px 41px yellow, -23px -20px 45px purple, 22px -18px 50px orange, 15px -11px 12px yellow, -19px 11px 13px magenta, -21px 28px 29px #ff0080, 20px -17px 24px cyan, -4px 19px 31px orange;
  }

  99.8% {
    transform: scale(1.11) rotate(-226.9deg) skew(60.9deg, 38.3deg) translate(-81.7px, 22.4px);
    filter: hue-rotate(99.5deg) blur(6.3px) saturate(291%);
    opacity: 0.53;
    background: red;
    text-shadow: 7px 12px 31px yellow, -12px -30px 38px cyan, 21px 12px 13px lime, -3px 20px 46px cyan, 6px 1px 31px pink, -11px 6px 49px blue, -16px 26px 26px #ff0080, 5px -6px 14px pink, 28px -3px 13px magenta, -17px -15px 30px cyan;
  }

  99.9% {
    transform: scale(0.79) rotate(256.7deg) skew(-81.0deg, -23.1deg) translate(1.1px, -30.6px);
    filter: hue-rotate(64.5deg) blur(5.1px) saturate(126%);
    opacity: 0.32;
    background: pink;
    text-shadow: -13px -30px 26px lime, 27px 17px 33px lime, 6px 27px 14px #ff0080, 24px 1px 46px cyan, 0px 29px 40px blue, -8px 15px 45px yellow, -2px 15px 13px cyan, 9px 25px 27px lime, 13px -24px 6px red, -30px -5px 16px #ff0080;
  }

  100.0% {
    transform: scale(1.98) rotate(-311.4deg) skew(-3.1deg, 22.6deg) translate(43.3px, -43.7px);
    filter: hue-rotate(44.1deg) blur(5.9px) saturate(270%);
    opacity: 0.99;
    background: pink;
    text-shadow: -15px -20px 44px yellow, -7px 14px 30px blue, 2px 22px 24px cyan, 12px -13px 38px purple, 4px 30px 16px blue, -12px -20px 45px yellow, 16px -1px 33px yellow, -3px -27px 28px cyan, 2px -11px 9px #ff0080, 19px -29px 48px orange;
  }
}