body {
  text-align: center;
  color: hotpink;
  font-family: arial;
  
  background-color: white;
}

div {
  margin-top: 150px;
}

img {
  /*shake animation*/
         
 animation: jerk 0.8s step-end infinite;
 }
 
@keyframes jerk {
 
0% {
 transform: rotate(2deg);
 }
 50% {
 transform: rotate(-2deg);
 }
/*shake animation end*/
}

/*link blur*/
a:link {
webkit-filter: blur(0.5px);
filter: blur(2px);
color: hotpink;
}

/*link color*/
a:hover {
  color: lightskyblue;
  
webkit-filter: blur(0.5px);
filter: blur(0.5px);
}