.section {
  width: 100%;
  height: 100vh;
  border-top: 2px solid hsla(42, 23%, 51%, .7);
}

.body {
  background-image: url('../images/graph-bg-v1.png'), -webkit-linear-gradient(150deg, #111, #353535);
  background-image: url('../images/graph-bg-v1.png'), linear-gradient(300deg, #111, #353535);
  background-position: 50% 50%, 0px 0px;
  background-size: cover, auto;
  background-repeat: no-repeat, repeat;
}

.div-block {
  position: relative;
  top: 41vh;
  display: block;
  width: 40%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  text-align: center;
}

.hello {
  display: inline-block;
  margin-top: 50px;
  -webkit-transition: all 400ms cubic-bezier(.175, .885, .32, 1.275);
  transition: all 400ms cubic-bezier(.175, .885, .32, 1.275);
  font-family: Lato, sans-serif;
  color: #f3d88e;
  font-size: 32px;
  font-weight: 100;
  text-align: left;
  text-decoration: none;
}

.hello:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: #fff6db;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -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;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 991px) {
  .div-block {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .div-block {
    top: 40vh;
  }
  .hello {
    margin-top: 40px;
  }
}

@media (max-width: 479px) {
  .div-block {
    width: 70%;
  }
  .hello {
    margin-top: 35px;
    font-size: 20px;
  }
}