
div.footer 
{
    position: relative;
    margin-left: 0;
    margin-right: 0;
    bottom: 0%;
    width: 98%;
    background: black;
    -webkit-animation: mymove 15s; /* Chrome, Safari, Opera */
    animation: mymove 15s;
}
div.nameTitle{width:420px;padding:10px;background:white;color:black;border-radius:1em;-moz-border-radius:1em;-webkit-border-radius:1em;text-align:center;text-decoration:none; font-size: 20px;font-weight=bold}
h1
{
font-size: 48px;
}
a
{
     font-size: 20;
     background: black;
}

body
{
    background: black;
    -webkit-animation: mymove 15s; /* Chrome, Safari, Opera */
    animation: mymove 15s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    from {background-color: white;}
    to {background-color: black;}
}
/* Standard syntax */
@keyframes mymove {
    from {background-color: white;}
    to {background-color: black;}
}

