/* Basic reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Body styling */ body { background-color: #1e2021; font-family: Arial, sans-serif; color: #c8c3bc; line-height: 1.6; display: flex; justify-content: center; align-items: flex-start; min-height: 100vh; } /* Center the main container */ .container { max-width: 35em; width: 90%; padding: 1em; border: 2px solid #3e4446; background-color: #181a1b; margin-top: 1em; text-align: center; } /* Article styling */ article { padding: 1em; } 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: #52b7ff; text-decoration: none; font-weight: bold; } a:hover { text-decoration: underline; } /* Footer styling */ footer { margin-top: 20px; padding: 10px; background-color: #1f2123; font-size: 1em; } .contact-info { display: flex; justify-content: center; gap: 15px; } .contact-info span { font-weight: bold; } hr { border: 1px solid #3e4446; }