/* style.css */ /* Basic reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Centering and box styling */ body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f5f5f5; font-family: Arial, sans-serif; color: #333; line-height: 1.6; } article { max-width: 35em; width: 90%; padding: 1em; border: 2px solid #333; background-color: #fff; text-align: center; } h1 { font-size: 2em; margin-bottom: 0.5em; } h2 { font-size: 1.5em; margin-top: 1em; margin-bottom: 0.5em; } p { margin-bottom: 1em; } ul { list-style-type: none; padding: 0; } li { margin: 1em 0; } a { color: #0077cc; text-decoration: none; font-weight: bold; } a:hover { text-decoration: underline; }