    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      background: #000;
      color: #fff;
      font-family: 'Inter', sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card {
      max-width: 1100px;
      width: 100%;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
      gap: 40px;
    }

    .left {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .hello-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(72px, 10vw, 110px);
      line-height: 1;
      letter-spacing: -2px;
      text-transform: uppercase;
    }

    .desc {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.55;
      max-width: 280px;
    }

    .greet {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.4;
    }

    .socials {
      display: flex;
      align-items: center;
      gap: 18px;
      border: 2px solid ;
      border-radius: 50px;
      padding: 10px 22px;
      width: fit-content;
    }

    .socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      text-decoration: none;
    }

    .socials svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    .right {
      flex: 1;
      display: flex;

      justify-content: center;

    }

   .right img {
     max-width: 300px;
     width: 100%;
     height: auto;
    }
    .myname{
      font-weight: bold;
      font-family: 'Nunito', sans-serif;
    }
    @keyframes jump {
      0% { transform: translateY(0px);}
      30% { transform: translateY(-30px);}
      60% { transform: translateY(-15px);}
      100% { transform: translateY(0px);}
    }
    .jump-animation{
      animation: jump 0.6s ease;
    }

    @keyframes moveIcon {
      0% { transform: translateY(0px);}
      30% {transform: translateY(-20px);}
      60% {transform: translateY(-10px);}
      100% {transform: translateY(0px);}
    }
    
    .moveIcon-animation{
      animation: moveIcon 0.6s ease;
    }

    #modeToggle {
      width: 50px;
      position: absolute;
      top: 40px;
      right: 40px;
      cursor: pointer;
    }
    

    .light-mode {
      background-color: aliceblue;
      color: black;
    }

    body.light-mode svg {
      fill: black;
    }
    @media (max-width: 768px) {
  .card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .left {
    align-items: center;
  }

  .desc {
    max-width: 100%;
  }

  .right {
    order: -1; /* image goes on top */
  }

  .hello-title {
    font-size: 60px;
  }
}
  @media (max-width: 480px) {
  .hello-title {
    font-size: 42px;
  }

  .greet {
    font-size: 16px;
  }

  .desc {
    font-size: 14px;
  }
}