/* Styling about section */

.about {
  max-width: 100vw;

  background-color: #7ab586;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: repeat(5, 1fr);
}

/* .about-heading {
  display: flex;
} */
.about-heading h2 {
  color: #fff;
}

.about-description {
  grid-row: 2/-1;
}
.about-description p {
  font-size: 2rem;
  color: #fff;
  padding-right: 4rem;
  margin-bottom: 1.5rem;
}

.about-image {
  grid-column: 2/-1;
  grid-row: 1/5;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
}

/* media query for about me */
@media (max-width: 450px) and (max-height: 900px) {
  .about {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-image {
    grid-column: auto;
    grid-row: auto;
  }
}
/* ///////////////////////////////////////////////////// */ /* Styling projects section */
.projects h2 {
  margin-top: 4rem;
  color: #277c38;
}

.project-link {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  background-color: #7ab586;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.project-category > h3 {
  font-size: 2.5rem;
}

.project-container {
  margin: 5rem auto;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
