@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.about-me {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100%;
  padding: 90px 0;
  background: rgba(0, 0, 0, 0.4) url('./img/bg.jpg') repeat;
  background-size: 100px 100px;
  background-position: center top;
  margin-top: 60px;
}
.pic {
  height: auto;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin-top: 20px;
}
.about {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.text {
  width: 100%;
  max-width: 540px;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 12px;
}
.text h2 {
  color: #333;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
.text h5 {
  color: #333;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
span {
  color: #4070f4;
}
.text p {
  color: #333;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 1px;
}

ul li::marker {
  font-size: 150%;
  color: lightgreen;
}

.data {
  margin-top: 30px;
}
.home {
  font-size: 18px;
  background: #4070f4;
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  transition: 0.5s;
}
.home:hover {
  background: lightgreen;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .pic {
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .text h2 {
    font-size: 32px;
  }

  .text h5 {
    font-size: 20px;
  }

  .text p {
    font-size: 16px;
    line-height: 22px;
  }

  .home {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-me {
    padding: 60px 0;
  }

  .text h2 {
    font-size: 28px;
  }

  .text h5 {
    font-size: 18px;
  }

  .text p {
    font-size: 14px;
  }

  .home {
    padding: 8px 18px;
    font-size: 14px;
  }
}
