File size: 393 Bytes
4b9d0c6
941a9af
4b9d0c6
 
941a9af
 
4b9d0c6
 
 
 
 
 
 
 
941a9af
 
4b9d0c6
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

body {
    font-family: 'Comic Neue', cursive;
}

/* Duck animation */
@keyframes duckFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.duck-float {
    animation: duckFloat 3s ease-in-out infinite;
}