#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: clamp(2rem, 8vw, 7rem);
  color: white;
  font-family: "Montserrat", sans-serif;
  background: black;
}

.zero {
  margin-right: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.word {
  font-weight: 300;
  min-width: 12ch;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.word.visible {
  opacity: 1;
}

.word.blur {
  filter: blur(3px);
}
