body {
  background-color: #000;
  font-family: Poppins, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading {
  max-width: 600px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 300;
}

.link {
  margin-top: 0px;
  margin-bottom: 10px;
  border-bottom: 2px solid #000;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  color: #a0957b;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 300;
  text-decoration: none;
}

.link-underline {
  width: 0%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#b6a98b), to(#79705e));
  background-image: linear-gradient(90deg, #b6a98b, #79705e);
}

.link-block {
  margin-top: 40px;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .link {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    padding: 30px;
  }

  .heading {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .link {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .wrapper {
    height: 100%;
    padding: 25px 20px;
  }

  .heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .link {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

