/* * sigma.style.css * Style sheet for the sigma application * * Copyright (c) 2023 Sigma Project * All rights reserved. */ /* Base styles */ body { margin: 0; font-family: 'Segoe UI', sans-serif; } /* Header styles */ header { background-color: #2e1f5d; color: white; padding: 20px; text-align: center; } header h1 { margin: 0; font-size: 2.5em; } /* Main content styles */ main { max-width: 800px; margin: auto; padding: 20px; box-sizing: border-box; } /* Footer styles */ footer { background-color: #2e1f5d; color: white; padding: 15px; text-align: center; clear: both; } /* Responsive styles */ @media (max-width: 600px) { header h1 { font-size: 2em; } main { padding: 10px; } }