.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(131, 203, 242, 0.15);
}

.logo {
  width: 30vw;
  height: auto;
  margin-top: -10vh;
  margin-bottom: -5vh;
}

.heading {
  font-family: Lato, sans-serif;
  color: #28589a;
  font-size: 44px;
  line-height: 52px;
  font-weight: 900;
  text-align: center;
}

.paragraph {
  width: 75%;
  font-family: Lato, sans-serif;
  color: #28589a;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  text-align: center;
}

.link {
  color: #28589a;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .logo {
    width: 50vw;
    margin-bottom: -10vh;
  }

  .heading {
    font-size: 36px;
    line-height: 42px;
  }

  .paragraph {
    font-size: 16px;
    line-height: 18px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    width: 65vw;
    margin-top: -5vh;
    margin-bottom: -5vh;
  }

  .heading {
    font-size: 28px;
    line-height: 32px;
  }

  .paragraph {
    font-size: 14px;
    line-height: 16px;
  }
}