body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
}

#bunny {
    max-width: 100%;
    height: auto;
    animation: hop 1s infinite;
}

p {
    font-size: 1.5em;
    color: #555;
    margin-top: 20px;
}

/* Animation for hopping */
@keyframes hop {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
