@keyframes bgMove {
    0% { background-position: 1% 1%; }
    50% { background-position: 99% 99%; }
    100% { background-position: 1% 1%; }
    }
    
@keyframes framing {
0% { border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent; }
25% { border-left-color: #000000;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent; }
50% { border-left-color: #000000;
    border-top-color: #000000;
    border-right-color: transparent;
    border-bottom-color: transparent; }
75% { border-left-color: #000000;
    border-top-color: #000000;
    border-right-color: #000000;
    border-bottom-color: transparent; }
100% { border-left-color: #000000;
    border-top-color: #000000;
    border-right-color: #000000;
    border-bottom-color: #000000; }
}