/* Apply a natural box layout model to all elements */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevent font size inflation after orientation changes in iOS */
html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
