html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 18px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.header {
  text-align: center;
  padding-top: 48px;
}

.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img {
  max-height: 150px;
}

p {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  text-align: justify;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 32px;
}

.footer p {
  text-align: center;
  font-size: 13px;
  margin: 0;
}

.footer img {
  height: 32px;
  margin-left: 8px;
}

@media only screen and (max-width: 450px) {
  body {
    font-size: 13px;
  }

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