:CRT/styles.css

.theme-television {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(to bottom,rgba(0,0,0,0.15)0px,rgba(0,0,0,0.15)2px,transparent 2px,transparent 5px);
	animation: crt-scan 4s linear infinite;
	z-index: 9999;
	top: 0;
	left: 0;
	position: fixed;
}

/* 줄이 아래로 흐르는 효과 */
@keyframes crt-scan {
    from {
        transform: translateY(-5px);
    }
    to {
        transform: translateY(5px);
    }
}