@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Start and end at the original position */
    }
    50% {
        transform: translateY(-65px); /* Move up by 20px */
    }
}

.bounce {
    display: inline-block; /* Ensure the element is treated as inline-block */
    animation: bounce 1s infinite; /* Apply the bounce animation */
    font-size: 2em; /* Optional: Adjust font size */
    color: pink; /* Optional: Match the existing style */
}

.secret {
    color: pink;
    font-size: 2em;
    position: fixed;
    top:90%;
    left: 80%;
}

.secretv {
    color: pink;
    font-size: 2em;
    position: fixed;
    top:90%;
    left: 20%;
}