/* da:
 * http://stackoverflow.com/questions/600743/how-to-get-div-height-to-auto-adjust-to-background-size
 *      -- che poi effettivamente gnaafatta
 * ispiraggio da pagina 404 wordpress.com
 */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Roboto, Helvetica, sans-serif;
  font-weight: 300;
  color: rgba(0, 0, 0, .3);
}

.container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  background-size: contain;
  background-color: rgba(0, 0, 0, 0.1);
}

.splash {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 33rem;
  height: 100%;
  text-align: center;
}

.splash footer {
  position: absolute;
  bottom: 0;
  margin-bottom: 2em;
  font-size: 0.91rem;
  color: rgba(0, 0, 0, 0.97);
}

.splash h1 {
  /* margin: 15px 0 0 0; */
  padding: 0;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.71);
  line-height: 1.5em;
  letter-spacing: -.02em;
}

.splash h2 {
  margin: 0;
  padding: 0;
  font-size: 2.3rem;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.91);
  line-height: 1.1em;
}

.splash p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.97);
}