.page-photo {
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.page-photo-frame {
    width: 124px;
    height: 124px;
    overflow: hidden;
    border-radius: 90px;
    border: 1px solid rgba(2, 175, 123, 0.28);
    box-shadow:
        0 0 0 1px rgba(0, 199, 138, 0.08),
        0 18px 40px rgba(0, 0, 0, 0.28);
}

.page-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    transform: scale(1.7);
    transform-origin: center bottom;

}

@media (max-width: 640px) {
    .page-photo {
        transform: translate(-50%, -44%);
    }

    .page-photo-frame {
        width: 88px;
        height: 88px;
    }

    .page-photo-image {
        width: 100%;
        height: 100%;
    }
}
