/* Minimalistic CSS Reset (Sorted and Structured) */

/* 1. Universal Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Base Elements */
html,
body {
  font-family: monospace;
  line-height: 1.5;
  overflow-y: scroll;
}

/* 3. Anchor Tags */
a {
  color: inherit;
  text-decoration: none;
}

/* 4. Buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 5. Forms */
input,
select,
textarea {
  appearance: none;
  border: none;
  cursor: inherit;
  font: inherit;
  outline: none;
  vertical-align: middle;
}

/* 6. Images */
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* 7. Lists */
ol,
ul {
  list-style: none;
}

/* 8. Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
