@import "/styles/styles.css";

.about_container {
  padding: 3rem 0rem;

  align-items: center;

  flex-direction: column;

  z-index: -20;
}

.about_container-text {
  width: 100%;
}

.about_container-text h1 {
  font-size: 4rem;

  font-family: "teko", sans-serif;

  line-height: 1.3;

  text-align: center;
}

.about_container-text h1 span {
  color: var(--secondary-color);
}

.about_container-image {
  width: 90%;
}
.about_container-image img {
  max-width: 100%;

  border-radius: 50%;
}

/* SMALL SCREENS SIZE AND GREATER... */
@media only screen and (min-width: 430px) {
  .about_container {
    padding: 3rem 6rem;

    flex-direction: row;
  }

  .about_container-text {
    width: 60%;
  }
  .about_container-text h1 {
    line-height: 1.6;

    font-size: 6rem;
    text-align: left;
  }

  .about_container-image {
    width: 40%;
  }
}

/* TABLET SCREEN SIZE AND GREATER... */
@media only screen and (min-width: 700px) {
  .about_container {
    padding: 3rem 2rem;

    flex-direction: row;
  }

  .about_container-text {
    width: 80%;
  }
  .about_container-text h1 {
    line-height: 1.6;

    font-size: 4rem;
    text-align: left;
  }

  .about_container-image {
    width: 60%;
  }
}

/* LARGE SCREEN SIZE AND GREATER... */
@media only screen and (min-width: 1040px) {
  .about_container {
    padding: 3rem 6rem;

    flex-direction: row;
  }

  .about_container-text {
    width: 60%;
  }
  .about_container-text h1 {
    line-height: 1.6;

    font-size: 6rem;
    text-align: left;
  }

  .about_container-image {
    width: 40%;
  }
}
