.custom-cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    background-color: white;
    opacity: 1;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    z-index: 2000;
    transform: translate(-50%, -50%);
    display: none;
    
}

.pointer-active {
    width: 80px;
    height: 80px;
    opacity: 0.2;
    z-index: 2000;
}
