html,
body,
#root {
  margin: 0;
  min-height: 100%;
  background: #eaeaf5;
}

#root:empty {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

#root:empty::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 4px solid #7b61ff;
  border-top-color: transparent;
  border-radius: 9999px;
  animation: ascend-boot-spin 0.7s linear infinite;
}

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