body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    }

#game {
    text-align: center;
    }

#board {
    display: grid;
    grid-template: repeat(3, 100px) / repeat(3, 100px);
    gap: 5px;

    }

.cell {
    background-color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    cursor: pointer;
    }

#status {
    margin-bottom: 20px;
    }

#restart {
    margin-top: 20px;} 

#pokemon {
    position: absolute;
    animation: bounce 8s infinite ease-in-out;
}

img {
    max-width: 100px;
}


@keyframes bounce {
    0%, 100% {transform: translateY(0);} 
    40% {transform: translateY(-300px);} 
    45% { transform: translateX(100px);}
    60% {transform: translateX(-100px);} 
    } 

