* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #e4e5e7;
    color: #1b1c1f;
    margin: 0 auto;
  }
  
  a {
    text-decoration: none;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
  
    .title {
      color: #1b1c1f;
      font-size: 22px;
      font-weight: 600;
      padding: 0 20px;
    }
  
    .nav-links {
      color: #1b1c1f;
      margin: 0 10px;
      padding: 10px 10px;
      border-radius: 5px;
      transition: .1s;
  
      a span {
        margin-left: 5px;
      }
    }
  
    .nav-links :hover {
      background-color: #c3c4c5;
    }
  }
  
  .intro-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin: 50px 0;
    margin-bottom: 100px;
    gap: 40px;
  
    .text {
      flex: 5;
  
      h1 {
        font-size: 45px;
      }
    }
  
    img {
      width: 350px;
      border-radius: 50%;
    }
  }
  
  .education-section {
      padding: 15px 50px;
  
    h1 {
      text-align: center;
      font-size: 35px;
      margin-bottom: 8px;
    }
  
    .edu {
      padding: 20px;
      border-radius: 5px;
      background-color: #f6f8f9;
      margin-bottom: 20px;
    }
  }
  
  .skills-section {
    padding: 0 50px;
    margin-bottom: 100px;
  
    h1 {
      text-align: center;
      font-size: 35px;
    }
  
    .text {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .skill-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
  
      .ski {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
      
        width: 180px;
        padding: 10px 20px;
        margin: 12px;
        border: 1.5px solid #d2d0d0;
        border-radius: 5px;
        
        img {
          width: 30px;
          height: 30px;
          object-fit: contain;
          border-radius: 3px;
        }
  
        span {
          font-size: 18px;
        }
      }
    }
  }
  
  .footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 50px;
    height: 120px;
    width: 100%;
    padding: 20px;
    background-color: #1b1c1f;
    text-align: center;
  
    a {
      color: #e4e5e7;
    }
  
    .footer-text {
      font-size: 12px;
    }
  }