#customCursor {
    position: absolute;
    top: 0;
    left: 0;

    transform-origin: center;
    /* font-weight: normal; */

    pointer-events: none;
    transition-property: font-size, opacity, color;
    transition: transform .1s, opacity .2s, color .5s, font-size .2s;

    vertical-align: baseline;
    text-align: center;
    text-justify: distribute-all-lines;

    z-index: 10;
}

@media (max-width: 1250px) {
    #customCursor {
        display:none
    }
}