#ns-splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 87, 184, 0.8);
  color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  animation: splashFade 1s ease-in-out forwards;
}

.ns-splash-logo {
  max-width: 200px;
  margin-bottom: 5px;
}

@keyframes splashFade {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
