/* * Sigma Stylesheet v0.1 * * This is a custom stylesheet for the Sigma project, * designed to provide styling for various components and elements. * * All styles are based on modern web standards and are * intended for use in a production environment. */ /* Base styles */ body { margin: 0; font-family: Arial, sans-serif; color: #333; } header { background-color: #222; color: white; padding: 1rem; text-align: center; } section { margin-top: 2rem; } footer { background-color: #444; color: white; text-align: center; padding: 1rem; } /* Component styles */ .card { background-color: #f5f5f5; border-radius: 8px; max-width: 600px; margin: auto; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .content { line-height: 1.6; } /* Responsive styles */ @media (max-width: 600px) { header { padding: 0.5rem; } .card { width: 90%; } }