div.intro {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}

div.intro p.intro {
  padding: 0.1rem 1rem;
  align-self: center;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 500;
  width: 100%;
  color: var(--black);
  border-right: 1px solid var(--light-grey);
  border-left: 1px solid var(--light-grey);
  margin: 0;
  background-color: var(--white-3);
}
div.intro-merge-colour {
  border-right: 1px solid var(--light-grey);
  border-left: 1px solid var(--light-grey);
  height: 4rem;
  width: 100%;
}

div.intro-merge-colour:first-of-type {
  background: linear-gradient(to bottom, var(--white), var(--white-3));
}
div.intro-merge-colour:nth-of-type(2) {
  background: linear-gradient(to bottom, var(--white-3), var(--violet-2));
}

@media all and (max-width: 1024px) {
  div.intro {
    width: 100%;
  }
}

@media all and (max-width: 580px) {
  div.intro p.intro {
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
  }
}
