body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica, 'sans-serif';
  background-color: #000000;
  color: #a1a5b7;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.splash-screen__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.splash-screen__logo img {
  display: block;
  margin: 0;
  height: auto;
  max-height: 96px;
  width: auto;
  max-width: min(120px, 40vw);
}

.splash-screen span {
  display: block;
  margin: 0;
  color: #a1a5b7;
  text-align: center;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
