body {
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.loader {
  width: fit-content;
  font-weight: bold;
  font-family: cursive;
  font-size: 30px;
  clip-path: inset(0 100% 0 0);
  animation: loading 2s steps(11) infinite;
}

.loader::before {
  content: "Loading...";
}

@keyframes loading {
  to {
    clip-path: inset(0 -1ch 0 0);
  }
}
