/* * styles.css * Custom CSS for the application */ /* Base Styles */ body { margin: 0; font-family: Arial, sans-serif; } /* Header Styles */ .header { background-color: #333; color: white; padding: 15px 0; text-align: center; } .header h1 { margin: 0; color: #fff; } /* Main Content Styles */ .container { max-width: 800px; margin: auto; padding: 20px; } /* Footer Styles */ footer { background-color: #444; color: white; text-align: center; padding: 10px; } /* Responsive Design */ @media (max-width: 600px) { .header h1 { font-size: 24px; } .container { padding: 10px; } }