/* RESET STYLES */

/* 1. Remove default margin, padding, and border */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Set default font and smoothing */
html,
body {
  height: 100%;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. Remove list styles */
ul,
ol {
  list-style: none;
}

/* 4. Remove anchor underline and inherit color */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Normalize images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 6. Remove default button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* 7. Set box-sizing to border-box for pseudo-elements */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* 8. Reset heading font styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
}

/* 9. Inherit font and remove spacing from inputs and textareas */
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* RESET STYLES */
