@page {
  size: A4;
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

html {
  /*
    choose Arial over Roboto for better number reading on small display,
    like google spreadsheet did
  */
  font-family: Arial, sans-serif;
}

body, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

body {
  font-size: 1.7vw;
}

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box
    box-sizing: border-box;
}
