.sfpicture {
    font-size: 15px;
    padding-right:70%;
    animation-name: sfgetbigger;
    animation-duration: 4s;
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    -webkit-animation-name: sfgetbigger;
    -webkit-animation-duration: 4s;
    animation-fill-mode: forwards;
}

@-webkit-keyframes sfgetbigger {
      from {padding-right: 70%;}
        to {padding-right:0%;}
}

@keyframes sfgetbigger {
    from {padding-right: 70%;}
    to {padding-right:0%;}
}


