body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  display: none;
}

.splash-screen-logo {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  animation: pulse 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, "sans-serif";
  background-color: #f2f3f8;
  color: #5e6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

[data-bs-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929f;
}

[data-bs-theme="dark"] .splash-screen span {
  color: #92929f;
}
