#loaderScreen {
  height: 100vh;
  width: 100vw;
  position: fixed;
  overflow: hidden;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  will-change: contents;
}
/* HTML: <div class="loader"></div> */
#loader {
  width: 0px;
  height: 20px;
  background-color: #ddd;
  /* animation: l1 2s infinite linear; */
}
/* @keyframes l1 {
  100% {
    background-size: 100%;
  }
} */
/* HTML: <div class="loader"></div> */
/* .loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  background: linear-gradient(90deg, #fff 50%, #fff 0) right/200% 100%;
  animation: l21 2s infinite linear;
}
.loader::before {
  content: "Loading...";
  color: #0000;
  padding: 0 5px;
  background: inherit;
  background-image: linear-gradient(90deg, #000 50%, #fff 0);
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes l21 {
  100% {
    background-position: left;
  }
} */
