/* Basic Reset / Cross Browser Reset / Every Browser will render the page the same way */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html * {
  font-family: 'Open Sans', sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  box-sizing: border-box;
}
