.cursor_text_title {
    color: #1d1d1d;
    margin-bottom: 3px;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
}

.cursor_text_category {
    color: #1d1d1d;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
}

.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    pointer-events: none;
    display: none;
    transition: transform 0.2s ease;
    z-index: 9999;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(0.7); } /* This makes it grow larger */
    90% { transform: scale(1.2); }
    100% { transform: scale(1); } /* Return to original size */
}


