*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#dvd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  padding: 0.35em 0.7em;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  will-change: transform;
  user-select: none;
}

.teurus {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 18vw, 14rem);
  letter-spacing: 0.08em;
  line-height: 1;
  background: repeating-linear-gradient(
    90deg,
    #000 0 24px,
    #fff 24px 48px
  );
  background-size: 48px 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: stripeRun 1.2s linear infinite;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

@keyframes stripeRun {
  to {
    background-position: 48px 0;
  }
}
