quacky-duck-world / style.css
victor's picture
victor HF Staff
a duck
4b9d0c6 verified
raw
history blame contribute delete
393 Bytes
@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;
}