/* "Developed by" section */
@keyframes bounceSubtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.bounce-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 4px 8px;
    animation: bounceSubtle 2.5s infinite;
    cursor: pointer;
    transition: transform 0.4s ease, color 0.4s ease, font-size 0.4s ease;

}

.bounce-link:hover {
    transform: scale(1.07);
    color: #ffe88a;
    font-size: 1.65rem;
    
}

.bounce-link span.bg {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
    transform: skewX(-15deg);
    transition: background 0.3s ease;
}

.bounce-link span.text {
    position: relative;
    z-index: 1;
}
