:root {
  color-scheme: light dark;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #151a23;
}

body {
  margin: 0;
}

.app-loading,
.no-script {
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.app-loading img {
  border-radius: 1rem;
}

.app-loading--error {
  color: #b42318;
}

.no-script a {
  color: #126aa5;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #151a23;
    color: #ffffff;
  }

  .no-script a {
    color: #9bd3ff;
  }
}
