html {
  width: 100%;
  height: 100%;
}

body,
#app {
  --text-color: rgba(255, 255, 255, 1);
  --bg-color: #0d1018;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.van-config-provider {
  width: 100%;
  height: 100%;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
