html {
  font-size: 62.5%; /* http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/ */
  margin: 0 0;
  /**
   * Avoid cover of content by the notch and home bar from iPhone X:
   * https://stackoverflow.com/a/50475590
  **/
  padding: env(safe-area-inset);
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Poppins", "Mulish", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  /**
   * Enables only pan events due Zooming Everywhere update from iOS
   * This solves the problem of <meta name="viewport"> tag not working
   * https://webkit.org/blog/7367/new-interaction-behaviors-in-ios-10/
  **/
  touch-action: pan-x pan-y;
}

* {
  box-sizing: border-box;
}

@page {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 50px;
  margin-top: 50px;
  padding: 0;
  padding-bottom: 150px;
}
