.card-panel:has(> .about-me__me-card) {
  background-image: url("/images/background/opening-quotes.png");
  background-repeat: no-repeat;
  background-position: right -30px bottom -20px;
}

.about-me__me-card {
  display: grid;
}
@media screen and (min-width: 1px) and (max-width: 639px) {
  .about-me__me-card {
    grid-row-gap: 20px;
  }
  .about-me__me-card .me-card__photo {
    text-align: center;
  }
}
@media screen and (min-width: 640px) {
  .about-me__me-card {
    grid-template-columns: max-content auto;
    grid-column-gap: 20px;
  }
}

.intro__you-will-know {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 20px;
  line-height: 1.25;
  hyphens: auto;
}
@media screen and (min-width: 640px) {
  .intro__you-will-know {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .intro__you-will-know {
    grid-template-columns: repeat(4, 1fr);
  }
}
.intro__you-will-know > li {
  border: 1px solid #eeeeee;
  box-shadow: 2px 2px 4px #e0e0e0;
  padding: 0.75em 1em;
  border-radius: 0.35em;
  text-shadow: -1px -1px 0 White, 1px -1px 0 White, -1px 1px 0 White, 1px 1px 0 White, -2px -2px 0 White, 2px -2px 0 White, -2px 2px 0 White, 2px 2px 0 White, -3px -3px 0 White, 3px -3px 0 White, -3px 3px 0 White, 3px 3px 0 White;
}

.contact-me {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}