:root {
  background-color: white;
}

@media (prefers-color-scheme: dark) {
  :root {
    background-color: #171717;
  }
}

html,
body {
  background-color: inherit;
}

body {
  margin: 0;
}

#motif-launch-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

#motif-launch-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

body.motif-app-ready #motif-launch-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
