p {
  margin-top: 47px;
  margin-bottom: 10px;
  color: #6b6b6b;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
}

.logo {
  width: 50vw;
}

.background {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  padding-right: 20px;
  padding-left: 20px;
  -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-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.74)), to(hsla(0, 0%, 100%, 0.74))), url('../images/pic-impress.jpg');
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.74), hsla(0, 0%, 100%, 0.74)), url('../images/pic-impress.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 23px;
  }

  .logo {
    width: 68vw;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 18px;
    line-height: 21.599999999999998px;
  }
}