body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
  background-color: #e5e5e5;
}
#splash-screen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #e5e5e5;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #18181b;
  }
  #splash-screen {
    background-color: #18181b;
  }
}
#splash-screen img {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  /* animation: fadeScaleIn 0.3s ease-out forwards; */
}
#splash-screen #brand {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: auto;
  border-radius: 0;
}
/* @keyframes fadeScaleIn {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }

} */
