html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
}

#root {
  width: 100%;
  height: 100%;
}

.index-loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-loading svg {
  fill: rgb(220, 38, 38);
  animation: spin 1s linear infinite;
  width: 5rem;
  height: 5rem;
}

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