#blogTitle h1, #blogTitle h2{
font-size:20px;
}
#blogTitle h1,,a#Header1_HeaderTitle,#blogTitle h2{
font-size:25px; 
font-weight:400;
 animation:mymove 5s infinite;
                -webkit-animation:mymove 5s infinite;   
                animation-direction:alternate; 
                animation-timing-function: ease-in-out;  
}
 @keyframes mymove
            {
                0%{
                transform: scale(1);  /*开始为原始大小*/
                }
                25%{
                    transform: scale(1.1); /*放大1.1倍*/
                }
                50%{
                    transform: scale(1);
                }
                75%{
                    transform: scale(1.1);
                }

            }
 .mydiv{
            z-index: 999;
            display: none;
            position: absolute;
            animation: showIt 0.5s infinite ease-in-out;
        }
        @keyframes showIt {
            0%{
               transform: scale(0.9)
            }
            70%{
                transform: scale(1.1)
            }
            100%{
                transform: scale(1);
            }
            
        }