*{
    padding: 0;
    margin: 0;
}
#game{
    width: 400px;
    height: 500px;
    border: 10px solid rgb(65, 63, 63);
    margin: auto;
    overflow: hidden;
}
#character{
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    position: relative;
    top: 400px;
    left: 190px;
    z-index: 1000000;
}
.block{
    width: 400px;
    height: 20px;
    background-color: rgb(65, 63, 63);
    position: relative;
    top: 100px;
    margin-top: -20px;
}
.hole{
    width: 40px;
    height: 20px;
    background-color: black;
    position: relative;
    top: 100px;
    margin-top: -20px;
}

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

@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 */
}

