  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
  }
  
  a {
      text-decoration: none;
      color: inherit;
  }
  
  header {
      background-color: #000;
      color: white;
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
      text-align: center;
  }
  
  nav ul {
      display: flex;
      flex-direction: row;
      justify-content: center;
      list-style: none;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 0;
  }
  
  nav a {
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      transition: background 0.3s;
  }
  
  nav a:hover,
  nav a.active {
      background-color: #333;
  }
  
  section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  section h1 {
      text-align: center;
      margin-bottom: 20px;
      color: #000;
  }
  
  section h2 {
      margin: 20px 0 10px;
      color: #222;
  }
  
  section p,
  section ul {
      margin: 10px 0;
  }
  
  #strengthlan {
      text-align: center;
      display: flex;
      margin: 0 auto;
      flex-direction: column;
      justify-content: center;
  }
  
  #strengthlan ul li {
      width: fit-content;
      margin: 0 auto;
      list-style-type: none;
      transition: all 0.3s ease-in-out;
  }
  
  #strengthlan ul li:hover {
      background-color: grey;
  }
  
  #home {
      text-align: center;
      padding: 80px 20px;
  }
  
  #home h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
  }
  
  #home p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
  }
  
  .skills-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
  }
  
  .skill-tag {
      background-color: #000;
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
  }
  
  .skill-tag:hover {
      background-color: grey;
      transform: scale(1.01) rotate(1deg);
  }
  
  .project,
  .experience {
      background: white;
      padding: 20px;
      margin: 20px 0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .project h3,
  .experience h3 {
      color: #000;
  }
  
  .project a,
  .experience a {
      color: #0077cc;
  }
  
  .project a:hover,
  .experience a:hover {
      text-decoration: underline;
  }
  
  #contact {
      text-align: center;
  }
  
  .contact-info {
      margin: 20px auto;
      max-width: 500px;
      line-height: 2;
  }
  
  .contact-info a {
      color: #0077cc;
  }
  
  footer {
      background-color: #222;
      color: #ddd;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
  }
  
  @media (max-width: 768px) {
      nav ul {
          align-items: center;
      }
      section {
          padding: 30px 15px;
      }
      #home h1 {
          font-size: 2rem;
      }
  }
  
  @media (max-width: 480px) {
      #home h1 {
          font-size: 1.8rem;
      }
      .skill-tag {
          font-size: 0.8rem;
          padding: 6px 12px;
      }
      body {
          background: linear-gradient(90deg, hsla(348, 19%, 29%, 1) 0%, hsla(243, 45%, 30%, 1) 33%, hsla(93, 14%, 26%, 1) 71%, hsla(183, 26%, 29%, 1) 100%);
          color: white;
      }
      section h1 {
          color: rgb(255, 0, 0);
      }
      #strengthlan h2 {
          color: rgb(255, 0, 0);
      }
      .project p {
          color: black;
      }
      .project {
          background: linear-gradient(90deg, hsla(350, 10%, 89%, 1) 0%, hsla(242, 19%, 74%, 1) 33%, hsla(92, 23%, 76%, 1) 71%, hsla(182, 38%, 87%, 1) 100%);
      }
      .project h3:hover {
          transition: all 0.3s ease;
          background-color: rgb(205, 197, 180);
      }
      .experience {
          background: linear-gradient(90deg, rgb(195, 157, 145) 0%, hsla(81, 32%, 79%, 1) 33%, hsla(352, 44%, 83%, 1) 71%, hsla(312, 36%, 79%, 1) 100%);
          color: black;
      }
      .experience ul li {
          list-style: none;
      }
      header {
          background-color: #00000069;
          color: rgba(170, 255, 0, 0.777);
          padding: 1rem 2rem;
          position: relative;
          top: 0;
          text-align: center;
      }
      nav ul li a {
          color: rgb(255, 136, 0);
      }
  }