/* * styles.css * * This file contains the CSS styles for the application. */ /* Base styles */ body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, sans-serif; } header { background-color: #333; color: white; padding: 20px; text-align: center; } .container { max-width: 1200px; margin: auto; padding: 20px; } /* Styles for sections */ .section-header { color: #ff6347; } .section-content { margin-top: 30px; } /* Responsive design */ @media (max-width: 600px) { .container { padding: 10px; } } /* Footer */ footer { background-color: #222; color: white; text-align: center; padding: 10px; }