.gmsEffects {
    position: fixed;
    bottom: -10px;
    color: rgba(255,40,60,1);
    text-shadow: 0 0 2px rgba(255,40,60,1);
    font-size: 20px;
    border-radius: 50%;
    user-select: none;
    pointer-events: none;
    z-index: -1;
    animation-name: rise;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
}

@keyframes rise {
    to {
        transform: translateY(-100vh);
    }
}

.navbar {
     z-index: 2;
}