/* * styles.css * * This file contains the CSS styles for the project. * It is meant to be included in the HTML files of the project. */ /* Base Styles */ body { margin: 0; font-family: Arial, sans-serif; } header { background-color: #f5f5f5; color: #333; padding: 20px; } footer { background-color: #eee; padding: 20px; text-align: center; } /* Main Content Styles */ main { max-width: 800px; margin: 20px auto; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } /* Responsive Design */ @media (max-width: 600px) { header { padding: 10px; } main { padding: 10px; } }