/* Boot-screen styles shown before the JS bundle loads (see index.html).
   Kept in a file, not an inline <style>, so style-src can drop 'unsafe-inline'. */
.logo-center {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.logo-center svg {
  animation: sparkle 1s;
  animation-iteration-count: infinite;
}

@keyframes sparkle {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0.9;
  }

  40% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.7;
  }

  60% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
  }
}
