body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    font-family: 'Arial', sans-serif;
}

.clock-container {
    text-align: center;
}

.time {
    font-size: 48px;
    margin-bottom: 20px;
}

.rabbit-animation {
    position: relative;
}

#rabbit {
    width: 100px;
    animation: rabbitAnimation 2s infinite;
}

#carrot {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 50px;
}

@keyframes rabbitAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
