.about {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 1rem;
}

.about-content {
  max-width: 500px;
}

.about h2 {
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  color: var(--light-color-1);
  padding-left: 2rem;
  background: linear-gradient(-45deg, #bae8cf, #7fe0b2, #ab9bff, #86c3e7);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px transparent;
}

.about h2 span {
  font-size: 7rem;
  text-transform: uppercase;
}

.about .about-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 1 40%;
}
.about .about-images img {
  width: 400px;
}

.about .about-images img:nth-child(2) {
  margin: -2rem 0 -2rem auto;
}

@media screen and (max-width: 768px) {
  .about {
    flex-direction: column-reverse;
    gap: 0;
    text-align: center;
    align-items: center;
  }

  .about .about-images {
    margin-top: 0;
  }

  .about .about-images img {
    width: 50%;
    height: auto;
    margin: 0 auto;
  }

  .about .about-images img:nth-child(2),
  .about .about-images img:nth-child(3) {
    display: none;
  }

  .about h2 {
    font-size: 3rem;
    padding-left: 0;
    text-align: center;
    margin: 2rem 0;
  }

  .about h2 span {
    font-size: inherit;
    letter-spacing: 0;
  }
}
