.div-body {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100vw;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-linear-gradient(315deg, #191654, #43c6ac);
  background-image: linear-gradient(135deg, #191654, #43c6ac);
  font-family: Lato, sans-serif;
  color: #fff;
}

.h1-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Poiret One', sans-serif;
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 4px;
}

.h3-sub-title {
  margin-top: 2vh;
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
}

.div-horz {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link-email {
  margin-left: 2vw;
  color: #f7b733;
  text-decoration: none;
}

.div-title {
  position: absolute;
  left: 0px;
  top: 36vh;
  right: 0px;
  -webkit-transition: -webkit-transform 500ms cubic-bezier(.47, 0, .745, .715);
  transition: -webkit-transform 500ms cubic-bezier(.47, 0, .745, .715);
  transition: transform 500ms cubic-bezier(.47, 0, .745, .715);
  transition: transform 500ms cubic-bezier(.47, 0, .745, .715), -webkit-transform 500ms cubic-bezier(.47, 0, .745, .715);
  cursor: none;
}

.div-title:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .div-title {
    top: 16vh;
  }
}

@media (max-width: 479px) {
  .h1-title {
    font-size: 40px;
    line-height: 40px;
  }
  .h3-sub-title {
    font-size: 12px;
    line-height: 16px;
  }
  .div-horz {
    margin-bottom: 12vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .link-email {
    margin-top: 1vh;
  }
  .div-title {
    top: 36vh;
  }
}

