body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #000;
}

.logo {
  width: 380px;
}

.cls-1 {
  fill: #ff0040;
  animation: color-change 3s linear infinite;
}

.cls-2 {
  fill: #ffffff;
  animation: color-change 3s 1.5s linear infinite;
}

@keyframes color-change {
  0%   { fill: #ff0040; }
  25%  { fill: #00ff88; }
  50%  { fill: #0077ff; }
  75%  { fill: #ffff00; }
  100% { fill: #ff0040; }
}

.rotating-image-container {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
}

.rotating-image {
  width: 150px;
  height: 150px;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


