/* * default.css * A simple default stylesheet for a web application */ body { margin: 0; padding: 0; font-family: Arial, sans-serif; } h1, h2, h3 { color: #333; } .content { background-color: #f9f9f9; color: #444; } button { background-color: #007BFF; border: none; color: white; padding: 10px 20px; cursor: pointer; } button:hover { background-color: #0056b2; }