.about-me h2 {
  text-align: center;
}

.about-me .image-description {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-me .image-description img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08),
      0 2px 2px rgba(0, 0, 0, 0.12),
      0 4px 4px rgba(0, 0, 0, 0.16),
      0 8px 8px rgba(0, 0, 0, 0.20);
}

@media screen and (min-width: 650px) {
  .about-me .image-description img {
    max-width: 250px;
    max-height: 250px;
  }
  .about-me .image-description div {
    margin-left: 2rem;
  }
  .about-me .image-description p {
    margin-bottom: 0;
  }
  .about-me .image-description {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}
