/* Shared styles across all pages */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); body { font-family: 'Inter', sans-serif; min-height: 100vh; display: flex; flex-direction: column; } #hero { background: radial-gradient(ellipse at center, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 1) 100%); } @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } } .floating { animation: float 6s ease-in-out infinite; }