* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
}

.about-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 25px;
}

.about-grid {
  width: min(850px, 100%);
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  grid-template-areas:
    ". intro ."
    "find image currently"
    ". goodbye .";
  align-items: center;
  justify-items: center;
  row-gap: 55px;
  column-gap: 45px;
}

.about-section {
  text-align: center;
}

.about-section h2 {
  margin: 0 0 20px;
  font-size: 1.6rem;
  font-weight: normal;
}

.about-section h2 span {
  padding: 0 3px;
  background: #dff5d8;
}

.about-section p {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.intro-section {
  grid-area: intro;
}

.find-section {
  grid-area: find;
}

.currently-section {
  grid-area: currently;
}

.goodbye-section {
  grid-area: goodbye;
}

.image-section {
  grid-area: image;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.snoopy-image {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}





@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "image"
      "find"
      "currently"
      "goodbye";
    row-gap: 40px;
  }

  .about-section p {
    font-size: 1.2rem;
  }

  .snoopy-image {
    width: 150px;
  }
}