html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: white;
  display: flex;
  flex-direction: column;
}

#content {
  text-align: center;

  /* Fill the entire height of the page above the footer. */
  flex: 1;

  /* Center child items */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-family: "Trebuchet MS", sans-serif;
  color: black;
}

#content h1 {
  font-weight: bold;
  font-size: 7vh;
}

#content p {
  margin: 0em;
}

#content img {
  width: 20vh;
  max-width: 256;
  margin-top: 5vh;
}
