.div-block {
  background-image: url('https://cdn.prod.website-files.com/6755e04916704af23a16e245/6755ef0558b8db2a618766f2_plain%20bg.png');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  display: flex;
}

.image {
  width: 20%;
}

.heading {
  color: #fff;
  text-align: center;
  margin-top: 12vh;
  font-family: Montserrat, sans-serif;
  font-size: 3.5rem;
  line-height: 4rem;
}

.paragraph {
  color: #fff;
  text-align: center;
  width: 75%;
  margin-top: 2rem;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .div-block {
    justify-content: center;
    align-items: center;
  }

  .image {
    width: 40%;
  }

  .heading {
    width: 90%;
    font-size: 3rem;
    line-height: 3.25rem;
  }

  .paragraph {
    width: 85%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .paragraph {
    font-size: 1.15rem;
    line-height: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  .image {
    width: 75%;
  }

  .heading {
    margin-top: 10vh;
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .paragraph {
    font-size: .95rem;
    line-height: 1.1rem;
  }
}


