#cursor-follower {
    width: 20px;
    height: 20px;
    background-color: rgb(249, 192, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.1s ease-in-out, opacity 0.5s ease-in-out, width .5s, height .5s, background-color .5s;
    opacity: 0;
    z-index: 999;
    overflow: hidden;
}

.follower-pulse {
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: follower-pulse;
    animation-duration: 0.5s;
}

@-webkit-keyframes follower-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgb(249, 192, 0, 0.5);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}

@keyframes follower-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(249, 192, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
.custom-link {
    background-color: #fff !important;
    /* Just for visual distinction */
    height: 100px !important;
    width: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, width .3s, height .3s;
}

.custom-link:active {
    transform: scale(.95) !important;
}

.hover-link-text {
    display: none;
    text-align: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 15px;
    font-size: .9em;
}

.hover-link-text div.title:first-of-type {
    margin-bottom: 10px;
    width: 70px;
}

.hover-link-text img {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.blend-mode {
    width: 150px !important;
    height: 150px !important;
    mix-blend-mode: difference;
    background-color: #fff !important;
    cursor: none !important;
}