.bounce-text {
    position: absolute;
    font-size: 2rem;
    font-weight: 600;
    white-space: nowrap;
    animation: bounce 8s linear infinite;
}

@keyframes bounce {
    0%   { top: 5%; left: 5%; }
    25%  { top: 5%; left: 70%; }
    50%  { top: 75%; left: 70%; }
    75%  { top: 75%; left: 5%; }
    100% { top: 5%; left: 5%; }
}

.bounce-back {
    position: fixed;
    bottom: 20px;
    left: 20px;
}
