.about-container {
  display: flex;
  flex-direction: row;
  width: 50vw;
  margin: auto;
  margin-top: 4vw;
  gap: 6vw;
  justify-content: center;
}

.about-me {
  flex: 1;
  border-radius: var(--border-radius);
}

header {
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0px;
}

p {
  line-height: 1.3;
  font-size: 1.3vw;
}

.image-grid {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  gap: 2vw;
}

.image-grid > img {
  width: 15vw;
  border-radius: var(--border-radius);
  flex: 1;
  box-shadow: 10px 10px var(--text-color);
}

/* adjust for mobile */

@media only screen and (max-width: 450px) {
  .about-container {
    width: 80vw;
    flex-direction: column;
  }

  header {
    margin-bottom: 0;
  }

  .about-me > h2 {
    font-size: 10vw;
    margin-top: 0;
  }

  .about-me > p {
    font-size: 4vw;
  }

  .image-grid > img {
    width: 100%;
  }

  .image-grid {
    gap: 10vw;
  }
}
