.statsBlock {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    padding: var(--inElementPadding);
    font-family: var(--fontOne);
}

.statsCountings {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
}

.oneCounting {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.oneCounting>h2 {
    text-transform: uppercase;
    letter-spacing: -2%;
    font-weight: 700;
    font-size: 250%;
}

.oneCounting>h3 {
    text-transform: capitalize;
    font-weight: 400;
    color: #ACA0E4;
    font-size: 80%;
}

.followCount>h2,
.likesCount>h2 {
    background: -webkit-linear-gradient(-45deg, #FFB266, #E9766F, #C04350);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.viewsCount>h2 {
    background: -webkit-linear-gradient(90deg, #F5F1FF, #6633EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.statsPara {
    font-weight: 400;
    color: rgba(127, 140, 210, 0.7);
    font-size: 80%;
}

@media only screen and (max-width: 1280px) {
    .oneCounting>h2 {
        font-size: 227%;
    }

    .statsPara {
        font-size: 75%;
    }
}

@media only screen and (max-width: 1080px) {
    .statsBlock {
        height: auto;
        height: 185px;
    }

    .oneCounting>h2 {
        font-size: 250%;
    }

    .statsPara {
        font-size: 80%;
    }
}

@media only screen and (max-width: 768px) {
    .statsBlock {
        height: 170px;
    }

    .oneCounting>h2 {
        font-size: 227%;
    }

    .statsPara {
        font-size: 75%;
    }
}

@media only screen and (max-width: 576px) {
    .statsBlock {
        height: 150px;
    }

    .oneCounting>h2 {
        font-size: 175%;
    }
}