 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: #fff;
    }

    .container {
      text-align: center;
      padding: 2rem;
    }

    .container img.img1 {
      border-radius: 50%;
      transition: transform 0.3s ease;
    }

    .container img.img1:hover {
      transform: scale(1.1);
    }

    h1 {
      font-size: 2.5rem;
      margin: 0.5rem 0;
    }

    h2 {
      font-size: 1.5rem;
      color: #00bcd4;
    }

    .social a img {
      margin: 0 10px;
      transition: transform 0.3s;
    }

    .social a img:hover {
      transform: scale(1.2);
    }

    .big {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 2rem;
      flex-wrap: wrap;
    }

    .text h1 {
      font-size: 2rem;
      animation: slideIn 1s ease-in-out;
    }

    @keyframes slideIn {
      from {
        transform: translateX(-100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    #box {
     
      margin-top: 1rem;
      color: #ffeb3b;
      font-size: large;
    }

    .img img {
      border-radius: 1rem;
      animation: fadeIn 2s ease-in;
    }
    .img img:hover {
      transform: scale(1.05);
      transition: transform 0.3s ease;
    }
    .imge img {
  border-radius: 1rem;
  animation: fadeIn 2s ease-in;
  max-width: 100%;
  height: auto;
  display: block;
}

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .small, .javascript, .projects, .contact, form {
      padding: 2rem;
    }

   .bigger{
    display: flex;
   }

    #img{
      margin-left: 20px;
        border-radius: 1rem;
      animation: fadeIn 2s ease-in;
    }


    .imge{
      margin-left: 20px;
        border-radius: 1rem;
      animation: fadeIn 2s ease-in;
    }

    .contact a{
    color: white;
    }

    .line {
      display: flex;
      gap: 2rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .vertical-line {
      border-left: 2px solid #fff;
      height: auto;
    }

    .projects {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    .projects > div {
      background: #ffffff10;
      border: 1px solid #fff3;
      padding: 1rem;
      border-radius: 1rem;
      transition: transform 0.3s ease;
      width: 280px;
    }

    .projects > div:hover {
      transform: translateY(-10px);
    }

    .projects img {
      width: 100%;
      border-radius: 0.5rem;
    }

    .projects a {
      color: #00e676;
      text-decoration: none;
      font-weight: bold;
    }

    #mypro, #con {
      text-align: center;
      font-size: 2rem;
      margin: 1rem 0;
      color: #4caf50;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 500px;
      margin: auto;
    }

    input, textarea {
      padding: 0.75rem;
      border: none;
      border-radius: 0.5rem;
      resize: none;
    }

    button {
      padding: 0.75rem;
      background: #00bcd4;
      border: none;
      color: white;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background: #0097a7;
    }

    .footer {
      text-align: center;
      padding: 1rem;
      background: #111;
    }