Changed around line 1
+ /* Basic reset and body styling */
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+ body {
+ font-family: Arial, sans-serif;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ background: #f3f4f6;
+ color: #333;
+ padding: 20px;
+ }
+ /* Main container */
+ .container {
+ text-align: center;
+ max-width: 400px;
+ width: 100%;
+ background: #fff;
+ padding: 30px;
+ border-radius: 15px;
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
+ }
+ /* Profile image styling */
+ .photo {
+ width: 100px;
+ height: 100px;
+ border-radius: 50%;
+ margin-bottom: 20px;
+ }
+ /* Headline text */
+ .name {
+ font-size: 1.5em;
+ font-weight: bold;
+ margin-bottom: 10px;
+ }
+ .bio {
+ font-size: 1em;
+ color: #666;
+ margin-bottom: 20px;
+ }
+ /* Link buttons */
+ .links a {
+ display: block;
+ text-decoration: none;
+ background: #0077ff;
+ color: #fff;
+ padding: 15px;
+ border-radius: 10px;
+ margin: 10px 0;
+ transition: background 0.3s;
+ }
+ .links a:hover {
+ background: #005bb5;
+ }