@media screen {
    .crtFilter {
        animation: scanlines infinite 10s linear;
    }
}

@keyframes scanlines {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 -20px;
    }
}
#main {
    background-color: "#212022";
}

.clockscene{
    position: absolute;
    z-index: 3;
}

.crt {
    z-index: 1;
    position: absolute;
    top:156px;
    left: 122px;
    filter: blur(.5px);
    border-radius: 20px;
}

.crtFilter {
    z-index: 2;
    opacity: 10%;
    top:155px;
    left: 121px;
    background: linear-gradient(to top, #757575, #757575, #ffffff, #ffffff);
    background-size: cover;
    background-size: 100% 5px;
    position: absolute;
    border-radius: 20px;
}