/* This is a sample style.css file generated for demonstration purposes. It contains a simple CSS stylesheet with some basic styles. The content is intended to show how the file would look in a real-world scenario. Please do not use this file in production environments without proper validation and security measures. */ body { margin: 0; font-family: Arial, sans-serif; } h1 { color: #333; background-color: #f5f5f5; padding: 10px 20px; border-radius: 5px; } .container { max-width: 800px; margin: auto; padding: 20px; background-color: white; box-shadow: 0 0 10px rgba(0,0,0,0.1); } p { color: #666; line-height: 1.6; } button { background-color: #4CAF50; color: white; padding: 10px 20px; border: none; cursor: pointer; border-radius: 5px; } button:hover { background-color: #45a049; }