#score {
    text-align: center;
    color: rgb(254, 78, 204);
}

#game{
    width: 600px;
    height: 300px;
    border: 4px solid rgb(254, 99, 200);
    margin: auto;
    background-image: url(gradient-pastel-sky-background_23-2148908165.jpg);
    background-size: cover;
}


#bunbun{
    height: 120px;
    width: 95px;
    position: relative;
    top: 173px;
    right: 7px;
    background-image: url(Untitled_design-removebg-preview.png);
    background-size: cover;
}


#carrot{
    height: 40px;
    width: 40px;
    position: relative;
    top: 132px;
    left: 547px;
    background-image: url(272-2726154_food-png-tumblr-pixel-circle.png);
    background-size: cover;
    animation: carrot 1.5s infinite;
}

@keyframes carrot {
    0%{left: 547px;}
    100%{left: -40px;}
    
}

.jump-animation {
    animation: jump 0.5s;
}

@keyframes jump {
    0%{top: 173px;}
    50%{top: 65px;}
    75%{top: 65px;}
    100%{top: 173px;}
}