#chicken {
    animation-name: drivingAround;
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes drivingAround{
    0%{
    transform: translateX(0px);
}
48% {
    transform: translateX(600px);
}
50%{
    transform: rotateY(180deg) translateX(-600px);
}
98%{
    transform: translateX(0px) rotateY(180deg);
}
100%{
    transform: translateX(0%)
}
}

body{
    background-color: lightyellow;
}

#hide{
    opacity: 0;
    transition: opacity 0.5s ease;;
}

#funny :hover + #hide{
    opacity: 1;
    
}

