body {
    margin: 0;
}

img {
    width: 100%;
}

.wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

picture {
    display: flex;
}

.footer_container {
    background-color: rgb(235, 235, 235);
    text-align: center;
    font-size: 12px;
}

.cv_container {
    position: relative;
}

.cv_btn {
    position: absolute;
    left: 16.5%;
    width: 67%;
    -webkit-animation: scale_anim 1s linear infinite alternate;
    animation: scale_anim 1s linear infinite alternate;
}

.cv_btn_p1 {
    top: 62.8%;
}

.cv_btn_p2 {
    top: 62%;
}

.cv_btn_p3 {
    top: 41%;
}

@keyframes scale_anim {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}