/* * styles.css * * This file contains the CSS styles for the application. */ /* Base Styles */ body { margin: 0; font-family: Arial, sans-serif; } /* Header Style */ header { background-color: #333; color: white; padding: 1em 0; text-align: center; } header h1 { margin: 0; } /* Main Content Styling */ main { padding: 2em; } /* Footer Style */ footer { background-color: #333; color: white; text-align: center; padding: 1em 0; margin-top: 2em; } /* Responsive Design */ @media (max-width: 600px) { header h1 { fontsize: 1.5em; } main { padding: 1em; } } /* Optional: Add more styles as needed */