.about-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.profile-image {
  flex-grow: 2;
  min-width: 200px;
  max-width: 30%;
  height: auto;
}

.profile-image img {
  width: 100%;
  height: auto;

  border-radius: 20px;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
}

.about-header {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 200px;
  max-width: 40%;
  text-wrap: wrap;
}

.about-name {
  font-size: 36pt;
  text-align: center;
}

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

.about-bio {
  text-align: left;
  padding-top: 30px;
  font-size: 10pt;
  line-height: 1.5;
}

.about-resume {
  margin: 20px auto;
}

.resume-link {
  padding: 10px;
  border-radius: 15px;
  border: 1.5px solid black;
  color: black;
  text-decoration: none;
  transition: ease-in-out 0.15s;
}

.resume-link:hover {
  font-size: 13pt;
  transition: ease-in-out 0.15s;
}
