body { background-color: indigo; color: white; } h1 { color: lightblue; text-align: center; font-size: 2em; } p { color: lightgray; font-size: 1.2em; line-height: 1.5; } button { background-color: orange; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; } button:hover { background-color: darkorange; } header { background-color: navy; padding: 20px; text-align: center; color: white; font-size: 1.5em; } footer { background-color: black; color: white; text-align: center; padding: 10px; }
body { background-color: white; color: black; font-family: Arial, sans-serif; } h1 { font-weight: normal; text-align: left; }
a { color: cyan; text-decoration: none; font-weight: bold; } a:hover { color: yellow; text-decoration: underline; } a:active { color: red; }