.example {
  width: 50vw;
  height: 100%;
  border: 1px solid #161616;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-example {
  width: 100%;
  color: #fbf9fc;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 60px;
  display: block;
  overflow: visible;
}

.highlight {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #8f00ff 42%, rgba(255, 255, 255, 0) 43%);
  display: inline;
}

.section {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .heading-example {
    font-size: 39px;
    line-height: 62%;
    overflow: visible;
  }
}

@media screen and (max-width: 767px) {
  .example {
    width: auto;
    height: auto;
    border-style: none none solid;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .heading-example {
    width: auto;
    flex: 1;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 38px;
    line-height: 1;
  }
}

@media screen and (max-width: 479px) {
  .heading-example {
    font-size: 20px;
    line-height: 1;
  }

  .section {
    height: 100vh;
    overflow: visible;
  }
}


