@import url(https://fonts.googleapis.com/css?family=Oswald:400, 700);
 html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #242424;
    font-family:'Oswald', sans-serif;
    background: -webkit-canvas(noise);
    background: -moz-element(#canvas);
    overflow: hidden;
}
html::after {
    content:'';
    background: radial-gradient(circle, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.center {
    height: 400px;
    width: 500px;
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 250px);
    text-align: center;
}
h2, h3, p {
    margin: 0 auto;
    padding: 0;
    -webkit-animation: funnytext 3s ease-in-out infinite;
    animation: funnytext 3s ease-in-out infinite;
}
h2 {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    -webkit-filter: blur(2px);
    filter: blur(2px);
}
h3 {
    font-size: 3.3rem;
    color: rgba(0, 0, 0, 0.6);
}
p {
    font-size: 2.3rem;
    color: rgba(255, 255, 255, 0.9);
    paddind: 15 0 15 0;
}

body::after, body::before {
    content:' ';
    display:block;
    position:absolute;
    left:0;
    right:0;
    top:-4px;
    height:4px;
    -webkit-animation: scanline 8s linear infinite;
    animation: scanline 8s linear infinite;
    opacity: 0.33;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 90%, rgba(0, 0, 0, 0)), -webkit-canvas(noise);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 90%, rgba(0, 0, 0, 0)), -moz-element(#canvas);
}
body::before {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
@-webkit-keyframes scanline {
    0% {
        top:-5px;
    }
    100% {
        top:100%;
    }
}
@keyframes scanline {
    0% {
        top:-5px;
    }
    100% {
        top:100%;
    }
}
@-webkit-keyframes funnytext {
    0% {
        color: rgba(255, 255, 255, 0.3);
        -webkit-filter: blur(3px);
    }
    30% {
        color: rgba(255, 255, 255, 0.5);
        -webkit-filter: blur(1px);
    }
    65% {
        color: rgba(255, 255, 255, 0.2);
        -webkit-filter: blur(5px);
    }
    100% {
        color: rgba(255, 255, 255, 0.7);
        -webkit-filter: blur(3px);
    }
}
@keyframes funnytext {
    0% {
        color: rgba(255,255, 255, 0.3);
        filter: blur(3px);
    }
    30% {
        color: rgba(255, 255, 255, 0.5);
        filter: blur(1px);
    }
    65% {
        color: rgba(255, 255, 255, 0.2);
        filter: blur(5px);
    }
    100% {
        color: rgba(255,255, 255, 0.7);
        filter: blur(3px);
    }
}