body { font-family: system-ui, sans-serif; margin: 0; scroll-behavior: smooth; }
.bodyWrapper { width: 100%; height: 100vh; display: flex; flex-direction: column; }

main { display: flex; flex: 1; overflow: auto; }

label {vertical-align: super;}
span {cursor: default;}
h1 {cursor: default;}

.shimmer {
  color: grey;
  display: inline-block;
  mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/350% 100%;
  animation: shimmer 2.5s infinite;
  font-size: 50px;
  max-width: 200px;
}

@keyframes shimmer {
  100% {
    mask-position: left
  }
}