/* Reset default styles */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Global styles */ body { background-color: #111; color: #fff; font-family: Arial, sans-serif; line-height: 1.6; padding: 20px; } .container { max-width: 800px; margin: 0 auto; } a { color: #fff; text-decoration: none; } h1 { font-size: 36px; margin-bottom: 10px; } h2 { font-size: 24px; margin-bottom: 20px; } h3 { font-size: 20px; margin-bottom: 10px; } p { margin-bottom: 20px; } ul { list-style: none; padding-left: 0; } footer { margin-top: 50px; text-align: center; font-size: 14px; } /* Dark theme */ .container { background-color: #222; padding: 30px; border-radius: 5px; } a:hover { text-decoration: underline; } #links li { margin-bottom: 10px; } .fa-file, .fa-github, .fa-linkedin { margin-right: 5px; }