#splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#splash-screen.light {
  background-color: white;
}

#splash-screen.dark {
  background-color: #151419;
}

.splash-screen-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 196px;
  height: 38px;
  font-family: 'Sans-Serif';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px; /* 100% */
  color: #8c8b91;
}
.splash-screen-logo {
  height: 84px;
}
.splash-screen-content > .text {
  position: relative;
}
.splash-screen-content > .text > span {
  position: absolute;
  bottom: 0;
  left: 100%;
}
