.fond {
    fill: #0bf;
}

.cloud {
    animation: cloud-move 5s;
}

@keyframes cloud-move {
    0% {
        transform: translateY(-50px);
    }
    50% {
        transform: translateY(50px) rotate(45deg);
    }
    100% {
        transform: translateY(-50px);
    }
}
