/* remove text decoration */

a {
  text-decoration: none;
}

/* makes sizing simpler */

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

/* remove default spacing */
/* force styling of type through styling, rather than elements */

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* min body height */

body {
  min-height: 100vh;
}

/* remove styles frol list items */

li {
  list-style-type: none;
}

/* reset buttons */

button {
  background: none;
  border: none;
  padding: 0;
}

/* reset inputs */
input:focus,
textarea:focus {
  outline: none;
}