body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--bs-app-bg-color);
  font-family: Poppins, Helvetica, 'sans-serif';
}

.splash-screen img {
  height: 90px;
  margin-left: calc(100vw - 100%);
  margin-bottom: 20px;
}

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