/*
Theme Name: Ollie Child
Template: ollie
Text Domain: ollie-child
*/

body:not(.wp-admin) header:has(> .is-position-sticky) {
    z-index: 999;
}
.mouse-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--wp--preset--color--main, #14111f);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition:
        width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        border-radius 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        top 0.1s ease-out,
        left 0.1s ease-out;
    box-sizing: border-box;
}

.mouse-follower.is-hovering {
    border-radius: 4px;
    border-width: 2px;
}