h1{
 animation: myHeader;
 animation-duration:5s;
 animation-delay:1s;
 animation-timing-function: ease;
}

@keyframes myHeader{
    from{margin-left: 100%;}
    to{margin-left: 0%}
}
