#wolfie{
    display: none;
    width:300px;
    position: fixed;
    right: 30px;
    bottom: -60%;
    opacity:0;
    animation:load_up 5s forwards;
    -webkit-animation:load_up 2s forwards;
}

@keyframes load_up{
    from{opacity:0;top:100%}
    to{opacity:1;top:73%;}
    
}@-webkit-keyframes load_up{
    from{opacity:0;top:50%}
    to{opacity:1;top:50%;}
    
}

@keyframes load_up{
    from{opacity:0;bottom:-60%}
    to{opacity:1;bottom:0;}
    
}@-webkit-keyframes load_up{
    from{opacity:0;top:50%}
    to{opacity:1;top:50%;}
    
}

