/*
 * Reset - Base browser resets and defaults
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden; /* Prevent horizontal scroll from 100vw elements */
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
}
