
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.my_portfolio {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #2980b9;
}
    body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to right top, #f9f9f9, #dce3f4, #c2d3f3);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      color: #222;
    }

    .container {
      background: #ffffff;
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      width: 90%;
      max-width: 600px;
      text-align: center;
      transition: 0.3s ease-in-out;
    }

    .container:hover {
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      transform: scale(1.01);
    }

    h1 {
      font-size: 2.2rem;
      margin-bottom: 25px;
      color: #2c3e50;
    }

    ul {
      list-style: none;
    }

    li {
      margin: 20px 0;
    }
    .bold_para{
        height: 2rem;
    }
    a {
      text-decoration: none;
      font-size: 1.1rem;
      padding: 12px 25px;
      color: #fff;
      background: linear-gradient(to right, #2980b9, #6dd5fa);
      border-radius: 30px;
      display: inline-block;
      box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3);
      transition: all 0.3s ease;
    }

    a:hover {
      background: linear-gradient(to right, #6dd5fa, #2980b9);
      transform: scale(1.07);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 1.6rem;
      }
      a {
        font-size: 1rem;
        padding: 10px 20px;
      }
    }
  