/* body {
  background-color: black;
  font-family: "Courier New", Courier, monospace;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
} */

.crt {
  position: relative;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.6), 1px 1px 2px rgba(0, 0, 0, 0.6), 1.5px 0px 1.5px rgba(255, 0, 0, 0.3), -1.5px 0px 1.5px rgba(0, 0, 255, 0.3);
  line-height: 1.5;
  animation: crt-flicker 0.5s infinite alternate, crt-blink 0.5s infinite alternate;
  filter: blur(1px);
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.2) 2px, rgba(0, 0, 0, 0) 4px);
}
.crt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/noisy.png");
  opacity: 0.05;
  animation: noise-animation 0.06s steps(10) infinite;
}

@keyframes crt-flicker {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 1px 1px 2px rgba(0, 0, 0, 0.6), 1.5px 0px 1.5px rgba(255, 0, 0, 0.3), -1.5px 0px 1.5px rgba(0, 0, 255, 0.3);
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 1px 1px 2px rgba(0, 0, 0, 0.6), 2px 0px 2px rgba(255, 0, 0, 0.2), -2px 0px 2px rgba(0, 0, 255, 0.2);
    opacity: 0.9;
  }
}
@keyframes crt-blink {
  0%, 40%, 42%, 80%, 82%, 100% {
    opacity: 1;
  }
  41%, 81% {
    opacity: 0.95;
  }
}
@keyframes noise-animation {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.2;
  }
}