@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
body {
  margin: 0;
  padding: 0;
}
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#splash-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#splash > div {
  position: relative;
  z-index: 1;
}
#splash img {
  display: block;
  width: 400px;
}
#splash-status {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;
  font-size: 16px;
  white-space: nowrap;
  background: linear-gradient(to right, #666, #999, #666);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
}