<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('css2.css');
body {
  background: #333;
  height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
svg {
  width: 30%;
  animation: rotate infinite linear;
  mix-blend-mode: multiply;
  margin: 0 -8%;
}
svg:nth-child(1) {
  fill: tomato;
  animation-duration: 4s;
}
svg:nth-child(2) {
  fill: gold;
  animation-duration: 2s;
  animation-direction: reverse;
}
svg:nth-child(3) {
  fill: lime;
  animation-duration: 6s;
}
svg:nth-child(4) {
  fill: turquoise;
  animation-duration: 3s;
  animation-direction: reverse;
}
@keyframes rotate {
  100%{transform: rotate(360deg)}
}
h1 {
  position: absolute;
  width: fit-content;
  height: fit-content;
  left:0;
  right:0;
  top:0;
  bottom:0;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  color: white;
  letter-spacing: .5em;
  font-size: 10vw;  
  animation: text 1s infinite;
  mix-blend-mode: screen;
}
@keyframes text {
  0% {text-shadow: 5px 0px 0px tomato;}
  10%{text-shadow: -5px -5px 0px gold;}
  20% {text-shadow: 5px 0px 0px lime;}
  30% {text-shadow: 5px 0px 0px turquoise;}
  40% {text-shadow: 5px 5px 0px tomato;}
  50%{text-shadow:  0px -5px 0px gold;}
  60% {text-shadow: 0px 5px 0px lime;}
  70% {text-shadow: 5px 0px 0px turquoise;}
  80% {text-shadow: 5px -10px 0px tomato;}
  90%{text-shadow: 5px 5px 0px gold;}
  100% {text-shadow: 5px 0px 0px lime;}
}</pre></body></html>