body{
    background:url(antique2.png);
    background-attachment:fixed;
    background-size: cover;
}

p{
    text-align:center;
}

img{
    max-width:100%;
}

header{
    font-size:7.7rem;
    color:white;
    font-family:'dico';
}

main{
    margin:0 auto;
    width:900px;
}

section{
    width:900px;
}

article{
    width:900px;
    position:relative;
}

.outofbounds{
    position:absolute;
}

#v{
    bottom:-10px;
    left:95px;
}

#comet{
    animation: comet 0.09s steps(2, end) infinite;
}

#shhhh{
    animation:shhhh 1s steps(2, end) infinite;

}


#running{
    top:25%;
    left:40%;
    height:225px;
    width:142px;
    animation: runlol 1s steps(2, end) infinite;
    background-repeat:no-repeat;
}

@keyframes runlol {
    0%{
        background-image:url(running1.png);
    }

    100%{
        background-image:url(running2.png);
    }
}

@keyframes shhhh {
    0%{
        top:-20px;
        right:-20px;
    }

    100%{
        top:-15px;
        right:-20px;
    }
}

@keyframes comet {
    0%{
        top:-230px;
        right:-230px;
    }
    100%{
        top:-215px;
        right:-230px;
    }
}