/**
 * Grid Cheet Sheet
 * XS - @media screen and (min-width: 375px) {}
 * S  - @media screen and (min-width: 768px) {}
 * M  - @media screen and (min-width: 1024px) {}
 * ML - @media screen and (min-width: 1260px) {}
 * L  - @media screen and (min-width: 1500px) {}
 * XL - @media screen and (min-width: 1900px) {}
 */

@import url( '//fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800' );

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Open Sans', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}