html,
body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  overflow-x: hidden;
}

html {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#root {
  min-height: 100%;
}

.initial-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #0a84ff;
  border-radius: 50%;
  animation: critical-loader-spin 1s linear infinite;
}

@keyframes critical-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
