@font-face {
    font-family: DOSlike;
    src: url(DOSLIKE.ttf);
}
@keyframes textWave {
    10% { text-shadow: 0px 0px rgb(200, 0, 0); }
    15% { text-shadow: -2px 0px rgba(200, 0, 0, 0.5); text-shadow: 2px 0px rgba(0, 0, 200, 0.5);}
    30% { text-shadow: 0px 0px rgb(200, 0, 0); text-shadow: 0px 0px rgba(0, 0, 200, 0.2);}
    35% { text-shadow: -2px 0px rgba(200, 0, 0, 0.5);}
    45% { text-shadow: 0px 0px rgb(200, 0, 0); }
    55% { text-shadow: 0px 0px rgba(200, 0, 0, 0.1); text-shadow: 2px 0px rgba(0, 0, 200, 0.5);}
    60% { text-shadow: -2px 0px rgba(200, 0, 0, 0.5);}
    80% { text-shadow: 0px 0px rgba(200, 0, 0, 0.1); text-shadow: 0px 0px rgba(0, 0, 200, 0.2);}
    90% { text-shadow: 0px 0px rgba(0, 0, 200, 0.1); text-shadow: -2px 0px rgba(200, 0, 0, 0.5);}
    100% { text-shadow: 0px 0px rgba(200, 0, 0, 0.1); text-shadow: 2px 0px rgba(0, 0, 200, 0.5);}
}
@keyframes move {
    10% {top: 0px;}
    15% {top: 1px;}
    20% {top: 0px;}
    45% {top: -2px;}
    50% {top: 1px;}
    55% {top: 0px;}
    65% {top: -1px;}
    70% {top: 0px;}
    85% {top: 0px;}
    90% {top: 2px;}
    95% {top: 0px;}
    97% {top: -1px}
    100% {top: 0px;}
}
html {
    background-color: rgb(0, 20, 0);
    color: rgba(0, 200, 0, 0.9);
    font-family: DOSlike;
}
body {
    position:absolute;
    animation-name: move;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}
#flicker-overlay {
    pointer-events: none;
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: rgba(0, 200, 0, 1);*/
    z-index: 2;
    background: repeating-linear-gradient(to bottom, rgba(0, 20, 0, 0.2) 0% 0.2%, rgba(0, 30, 0, 0.2) 0.2% 0.4%)
}
p {
    animation-name: textWave;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 1px 2px);
}