body {
  background: black;
  /* leave it to hide the scrollbars */
  overflow: hidden;
  margin: 0;
}
#loader{
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.load {
  display: inline-block;
  width: 2em;
  height: 2em;
  border: 0.25em solid rgba(0, 0, 0, 0.1);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 2em;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}