
@keyframes astronaut {
    50% {
        transform: translate(10px, 11px) rotate(-3deg);
    }
}
.astronaut {

    animation: astronaut 5500ms ease-in-out infinite;
}
