/* styles.css */ body { margin: 0; font-family: Arial, sans-serif; } header { background-color: #333; color: white; padding: 1em 0; text-align: center; } main { padding: 2em; max-width: 800px; margin: auto; } footer { background-color: #444; color: white; padding: 1em 0; text-align: center; margin-top: 2em; } a { color: blue; text-decoration: none; } a:hover { color: purple; text-decoration: underline; }