/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .artemiscle .cursor-text {
    position: absolute; /* Optional: To position the pseudo-element */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-weight: var(--textWeight);
    font-size: var(--textSize);
    color: var(--textColor); /* Apply styling to the pseudo-element */
    display: block;
    width: 100%; /* Optional: Ensure it's fully visible */
    text-align: center;
}

.cronovoid .cursor-text {
    text-transform: uppercase;
    font-weight: var(--textWeight);
    font-size: var(--textSize);
    color: var(--textColor); /* Apply styling to the pseudo-element */
    text-align: center;
}

.cursor-wrapper .inner, .cursor-wrapper .outer {
    mix-blend-mode: var(--blendingMode);
}