html, body {
    height: 100%;
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0px;
}
.page-not-found-screen__wrapper {
  min-height: 100%;
  width: 100%;
  margin-top: -150px;
  display: flex;
  flex-wrap: wrap;
  background-color: #f8f9fb;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
}

.page-not-found-screen__container {
  min-height: 100%;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#hero-img {
  margin-bottom: 45px;
}

.page-not-found-text__title {
  color: #474570;
  font-size: 23pt;
  line-height: 1;
}

.page-not-found-text__subtitle {
  color: #9999b1;
  font-size: 16pt;
  font-weight: 300;
}

footer {
  width: 100%;
  background-color: #f8f9fb;
}
footer .footer-container {
  width: 100%;
  height: 150px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 0px;
  text-align: center;
  color: #9998b2;
}

footer .footer-container p {
  font-size: 10px;
  font-weight: 300;
}

#footer-logo {
  margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
    .page-not-found-screen__wrapper {
        margin-top: -90px;
        width: 100%;
    }
    #footer-logo {
        width: 70px;
        margin-bottom: 5px;
    }

    footer .footer-container p {
        font-size: 6pt;
    }
    footer .footer-container {
        height: 90px;
        padding: 15px 0px;
    }
    #hero-img {
        width: 280px;
        margin-bottom: 25px;
    }
    .page-not-found-text__title {
        font-size: 12pt;
    }

    .page-not-found-text__subtitle {
        font-size: 10pt;
    }
}

@media only screen and (max-width: 768px) {
    footer .footer-container p {
      font-size: 8pt;
    }

    .page-not-found-text__subtitle {
        font-size: 10pt;
    }

    .page-not-found-text__title {
        font-size: 14pt;
    }
}


  