body,
html {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

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

.splash-screen img {
  /* margin-left: calc(100vw - 100%); */
  line-height: 1.2;
  height: 40px !important;
}

[data-bs-theme="dark"] .splash-screen {
  background-color: #090917;
  color: #c1c1ca;
}

[data-bs-theme="dark"] .theme-light-show {
  display: none;
}
[data-bs-theme="dark"] .theme-dark-show {
  display: block;
}
[data-bs-theme="light"] .theme-light-show {
  display: block;
}
[data-bs-theme="light"] .theme-dark-show {
  display: none;
}
