.content {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  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;
}

.content-box {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  padding: 100px;
  border: 20px solid #fff;
  color: #fff;
  text-align: center;
}

.body {
  font-family: 'Cormorant Garamond', sans-serif;
}

.heading {
  font-family: 'Droid Sans', sans-serif;
  font-size: 66px;
}

@media (max-width: 767px) {
  .heading {
    font-size: 55px;
    line-height: 53px;
  }
}

@media (max-width: 479px) {
  .content-box {
    padding: 20px;
  }
}

