/* * tech-news-style.css * Styles for the tech news website */ body { margin: 0; font-family: Arial, sans-serif; } header { background-color: #333; color: white; padding: 1em; text-align: center; } .header-title { font-size: 2.5em; margin-bottom: 0.5em; } .content { padding: 20px; max-width: 800px; margin-left: auto; margin-right: auto; } .footer { background-color: #444; color: white; text-align: center; padding: 10px; } /* Responsive styles */ @media (max-width: 600px) { .content { padding: 15px; } }