#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}


* {
    cursor: url('../img/favicon-32x32.png'), auto;
}

a {
    cursor: url('../img/favicon-32x32.png'), auto;
}

a:hover {
    cursor: url('../img/favicon-32x32.png'), auto;
}


.cursor {
    z-index: 999999;
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
    position: absolute;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    transform-origin: 50%;
    animation: cursorAnim .5s infinite alternate;
    pointer-events: none;
}

.cursor::after {
    z-index: 999999;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    border: 8px solid gray;
    transform-origin: 50%;
    border-radius: 50%;
    opacity: .5;
    top: -1px;
    left: -1px;
    animation: cursorAnim2 .5s infinite alternate;
}

@keyframes cursorAnim {
    from {
        z-index: 999999;
        transform: scale(1);
    }
    to {
        z-index: 999999;
        transform: scale(0.7);
    }
}
@keyframes cursorAnim2 {
    from {
        z-index: 999999;
        transform: scale(1);
    }
    to {
        z-index: 999999;
        transform: scale(0.4);
    }
}
@keyframes cursorAnim3 {
    0% {
        z-index: 999999;
        transform: scale(1);
    }
    50% {
        z-index: 999999;
        transform: scale(3);
    }
    100% {
        z-index: 999999;
        transform: scale(1);
        opacity: 0;
    }
}
.expand {
    z-index: 999999;
    transform-origin: 50%;
    animation: cursorAnim3 .5s forwards;
    border: 1px solid #84c9ff;
}