h1 {
 text-align: center;
}

/* being used on pause html page when main site is down for maintenance  */
h2 {
  text-align: center;
  color: blue;
}

/* needed for body and footer definition - see also html file */

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    margin: 0 auto 0; 
  background:white;
}
.footer, .push {
    height: 70px; /* .push must be the same height as .footer */
}

.footer{
  font-size: 1rem;
  background: #C0C0C0;
  color: black; 
}

/* allows the image to scale to 80% of its width and height to be auto adjusted */
img {
  max-width: 80%;
  height: auto;
}