*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8fafc;
    cursor: none;
}
h1{
      font-size: 40px;
      color: #111827;
      z-index: 1;
}
.cursor-dot{
    width: 6px;
    height: 6px;
    background-color: #111827;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.2s ease;
}
.cursor-ring{
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
    z-index: 9998;
    mix-blend-mode: difference;
}
.cursor-ring.active{
    transform: translate(-50%, -50%) scale(3);
}
.cursor-dot.hide{
    opacity: 0;
}