.bg-style {
    display: flex;
    flex-direction: row;
}

.counter {
    display: inline-flex;
    cursor: pointer;
    width: 130px;
    height: 130px;
    max-width: 300%;
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 200;
    transition: height .1s ease-in-out;
    background: #fff;
    border-radius: 30%;
}

.percentage {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 0;
    right: 0;
    vertical-align: middle;
    transform: translate3d(0, -50%, 0);
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
}