body {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  margin: 0;
  padding: 0 24px;
  color: #222;
  line-height: 1.6;
  background: #fefefe;
}

.container {
  max-width: 800px;
  margin: 60px auto 0;
  padding-bottom: 40px;
}

h1,
h2 {
  font-weight: 600;
  color: #27445c;
}

h1 {
  margin: 0 0 32px;
  font-size: 2.2rem;
}

h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #9aaab5;
}

p {
  margin-top: 0;
  margin-bottom: 1.2em;
}

a {
  color: #27445c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 42px;
  align-items: start;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.profile-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
}

.footer {
  font-size: 0.85em;
  color: #666;
  text-align: center;
  padding: 40px 0 20px;
}

@media (max-width: 650px) {
  .container {
    margin-top: 32px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile-image {
    width: 210px;
    grid-row: 1;
  }
}
  