.hero_sec {
  height: 100vh;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.hero_sec h1 {
  font-size: 8rem;
  font-family: "Alex Brush";
}

.hero_sec h2 {
  font-style: italic;
  font-size: 2.25rem;
  letter-spacing: 1rem;
}

.heading {
  margin: 0 5rem;
}

.heading h2 {
  font-size: 2.5rem;
}

.my_image {
  width: 20rem;
  height: 20rem;
  border-radius: 60%;
  border: 6px solid black;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.grid_sec {
  gap: 2rem;
  display: grid;
  margin: 7.5rem 5rem;
  grid-template-columns: repeat(2, 1fr);
}

.image_sec {
  text-align: center;
}

.mobile_img {
  width: 12rem;
  margin: auto;
  display: flex;
}

.web_img {
  padding: 0.5rem;
  text-align: center;
  border: 2px solid black;
}

.text_sec h2 {
  font-size: 2.5rem;
}

.text_sec h3 {
  font-size: 1rem;
  font-family: "Poppins";
}

.text_sec p {
  font-size: 1.25rem;
}

@media only screen and (max-width: 500px) {
  .grid_sec {
    margin: 1rem;
    display: block;
  }

  .hero_sec h1 {
    font-size: 3rem;
  }

  .hero_sec h2 {
    font-size: 1rem;
    letter-spacing: 0.5rem;
  }

  .my_image {
    display: none;
  }

  .heading {
    margin: 4rem 1rem;
  }
}
