yle>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      margin: 20px auto;
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #222;
    }

    .subtitle {
      font-size: 1rem;
      color: #555;
      margin-bottom: 20px;
    }

    .profile-pic {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin: 15px auto;
      border: 4px solid #444;
      object-fit: cover;
    }

    section {
      margin: 25px 0;
    }

    h2 {
      background: #333;
      color: #fff;
      padding: 8px;
      border-radius: 10px;
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    ul {
      list-style: none;
    }

    li {
      margin: 5px 0;
    }

    /* Social links */
    .socials {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }

    .socials a {
      text-decoration: none;
      color: #fff;
      background: #333;
      padding: 10px 18px;
      border-radius: 25px;
      transition: 0.3s;
    }

    .socials a:hover {
      background: #007bff;}