#pointer-dot {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border: 2.5px solid #ffae00;
    position: fixed;
    border-radius: 4px;
    z-index: 101;
    pointer-events: none;
    transition: border-color 0.5s;
}

/* RENKLER pointer.js içerisinden değişiyor */

#pointer-ring {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    padding: 15px;
    border: 2px solid #0c367e;
    position: fixed;
    border-radius: 100px;
    z-index: 102;
    pointer-events: none;
}

/* Sayfa genelinde pointer'ı her ekran boyutunda gizleriz */
html {
    cursor: none; /* Özel pointer'ınızın görünmesi için normal cursor'ı gizliyoruz */
}

a {
    cursor: none; /* Özel pointer'ınızın görünmesi için normal cursor'ı gizliyoruz */
}

@media screen and (max-width: 600px) {
    body{
        cursor: none;
    }
}