html {
  background-color: #f5f3ee;
}

html.dark {
  background-color: #1a1a2e;
}

body {
  margin: 0;
  padding: 0;
  background-color: inherit;
  -webkit-tap-highlight-color: transparent;
}

#root:empty::after {
  content: '';
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 4px solid #d5d0c8;
  border-top-color: #c4ad82;
  border-radius: 50%;
  animation: boot-spinner 1s linear infinite;
}

html.dark #root:empty::after {
  border-color: #3a3a4a;
  border-top-color: #c4ad82;
}

@keyframes boot-spinner {
  to {
    transform: rotate(360deg);
  }
}