/* Fill the entire page with the block of text.
 * For an initial explanation, go here:
 * http://stackoverflow.com/questions/16056591/font-scaling-based-on-width-of-container
 * Cribbed from here:
 * http://codepen.io/CrocoDillon/pen/fBJxu
 * Further explanation:
 * http://codepen.io/CrocoDillon/pen/jgmwt
 */

@font-face {
  font-family: "Ubuntu";
  src: url('/fonts/ubuntu-r-webfont.ttf') format('truetype'), url('/fonts/ubuntu-r-webfont.woff') format('woff');
}

.fillpage {
    margin: 0;
    /* font-size: calc(4vw + 4vh + 2vmin); */
    font-size: 17vmin;
}

