.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 7rem;
  margin-bottom: 2rem;
  width: 100%;
  height: 20rem;
}
.banner-img {
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: contrast(70%) brightness(70%);
  z-index: -1;
  display: block;
}
.banner .title {
  color: var(--text-light);
  font-family: var(--title-font);
  font-size: 3.7rem;
  text-align: center;
  position: absolute;
}

.content {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.text {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-family: var(--title-font);
}
.img-name-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto 3rem;
  width: fit-content;
  max-width: 100%;
}
.owner-img {
  aspect-ratio: 1 / 1;
  width: 200px;
  border-radius: 50%;
  margin: 0 auto;
}
.name {
  padding: 0.7rem;
  color: var(--text-light);
  background: linear-gradient(to bottom, var(--button-gradient-start), var(--button-gradient-end));
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: var(--title-font);
  width: 150px;
  text-align: center;
  margin: 0 auto;
}
.story {
  font-size: 1.7rem;
  margin-bottom: 2rem;
  line-height: 3rem;
}