img.bt-anime {
    animation: animScale 3s infinite ease-out;
    animation-play-state: running;
    transform-origin: 50% 50%;
    animation-play-state: running;
}
div.cv-bt {
    position: absolute;
    bottom: 2%;
    right: 0%;
    width: 12%;
}
div.cv-area {
    position: relative;
}
div.cv-img {
    position: relative;
    text-align: right;
}

@keyframes animScale{
0% { transform: scale(0.8, 0.8); }
5% { transform: scale(1.2, 1.2); }
10% { transform: scale(1, 1); }
15% { transform: scale(1.1, 1.1); }
20% { transform: scale(1, 1); }
100% { transform: scale(1, 1); }
}