#name {
  background: linear-gradient(to right, hsl(271, 76%, 75%), hsl(219, 79%, 75%), hsl(328, 100%, 75%), hsl(271, 76%, 75%));
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body {
  display: flex;
  justify-content: center;
  height: 100vh;
}

.side-by-side {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 2em;
}

.person {
  width: 30%;
}

.person img {
  width: 100%;
}

.text {
  flex: 1;
  align-items: center;
  text-align: start;
}

.feature {
  width: 100%;
}

.section {
  margin: 1em 0 0 0;
}

@media screen and (max-width: 1000px) {
  h2,
  .section {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .person {
    width: 50%;
  }
}

@media screen and (max-width: 550px) {
  .side-by-side {
    flex-direction: column;
  }
}
