animate shake bug

https://stackoverflow.com/questions/46677430/animate-css-shake-not-working

by Aman Singh

HTML

<link rel="stylesheet" href="https://rawgit.com/daneden/animate.css/master/animate.min.css">
<body>
<h1><a id="Header" class="Header animated tada">My First Heading</a></h1>
<p>My first paragraph.</p>

<div id="animeContent">
</div>

</body>

CSS

body{
	background-color: rgb(171, 194, 232);
}
#Header{
    display: block;
	  -webkit-animation-duration: 10s;
		-webkit-animation-delay: 0s;
    -moz-animation-duration: 3s;
	  -moz-animation-delay: 2s;
    -o-animation-duration: 3s;
	  -o-animation-delay: 2s;
    animation-duration: 3s ;
		animation-delay: 0s;
}