html,
body {
  background-color: #0d0d11;
}

html[data-theme="light"],
html[data-theme="light"] body {
  background-color: #f5f6fa;
}

body {
  margin: 0;
  min-height: 100vh;
}

#root {
  min-height: 100vh;
}

.app-loading {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.app-loading__spinner {
  animation: app-shell-spin 0.8s linear infinite;
  border: 3px solid rgba(128, 128, 128, 0.15);
  border-radius: 50%;
  border-top-color: #6c35de;
  height: 2.5rem;
  width: 2.5rem;
}

@keyframes app-shell-spin {
  to {
    transform: rotate(360deg);
  }
}
