@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Titan+One&display=swap');


body {
    /* cursor: none; */
}

.custom-cursor {
    position: absolute;
    width: 30px; /* 15px radius */
    height: 30px;
    background-color: var(--color-secondary-2);
    border-radius: 50%;
    pointer-events: none; /* Allow events to pass through */
    transition: width 0.2s ease, height 0.2s ease; /* Smooth transition */
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-text {
    z-index: 100000;
    position: absolute;
    color: var(--color-white);
    font-size: 15px; /* Increased font size */
    display: none;
    pointer-events: none;
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
    transform: translate(-50%, -50%);
}
