@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transition: all 0.3s ease;
}

h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(30deg); }
    50% { transform: translateY(-20px) rotate(30deg); }
    100% { transform: translateY(0) rotate(30deg); }
}