html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* bg image */
.body-main {
    background-image: url('/img/ccgp-background.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;

    /* Pinned to the viewport rather than to the body box. Without this the
       image is stretched to the body's own height, so as soon as a page is
       taller than the window - the Create Password form on a laptop screen -
       everything below the fold is bare white. "fixed" makes the positioning
       area the viewport, so 100% 100% always means "exactly one screenful"
       however far you scroll. On a page that doesn't scroll it renders
       identically to before. */
    background-attachment: fixed;
}
