#initial-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  z-index: 99999;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#initial-splash img {
  width: 150px;
  height: auto;
  animation: pulse-splash 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-splash {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}
