body {
  font-family: bodoni-egyptian-pro, sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

a {
  text-decoration: underline;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url('../images/pexels-tim-gouw-dark.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -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;
}

.header {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-wrapper {
  margin-top: 20%;
}

.heading-1 {
  font-size: 75px;
  line-height: 75px;
  text-align: center;
  text-transform: uppercase;
}

.email-link {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.paragraph {
  font-size: 50px;
  line-height: 1em;
  text-align: center;
}

.social-wrapper {
  position: absolute;
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.link-block {
  width: 32px;
  margin: 20px;
}

.body {
  height: 100%;
}

@media screen and (max-width: 991px) {
  .text-wrapper {
    margin-top: 40%;
    padding-right: 30px;
    padding-left: 30px;
  }

  .logo-wrapper {
    width: 160px;
  }

  .paragraph {
    font-size: 36px;
  }
}

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

  .paragraph {
    font-size: 24px;
  }
}

@media screen and (max-width: 479px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .email-wrapper {
    display: none;
  }

  .text-wrapper {
    margin-top: 76%;
  }

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

  .email-link {
    font-size: 20px;
  }

  .logo-wrapper {
    width: 200px;
  }

  .paragraph {
    line-height: 1.5em;
  }

  .social-wrapper {
    left: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

