.lol {
text-align: center;
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

animation-name: anim;
animation-duration: 2s;
animation-delay: 1s;
animation-iteration-count: infinite;
}

@keyframes anim{
 0%{
scale: 1;
 }
 50%{
scale: 1.1;
 }
 100%{
scale: 1;
 }
}