body {
    background: green;
}
path {
    transform-box: fill-box;
    transform-origin: 50% 105%; 
    animation: ondulation 3s ease-out infinite alternate;
}
@keyframes ondulation {
    0% { rotate: -6deg}
    100% { rotate: 6deg}
}