/* 
_______________________________________________
=== RESET === 
_______________________________________________
*/

/* Set box-sizing to border-box for all elements and pseudo-elements */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove margin, padding, border, and outline from all elements */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* Normalize font size and set a consistent line height */
html, body {
  font-size: 100%;
  line-height: 1.5;
}

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

/* Remove quote marks in blockquotes and <q> elements */
blockquote, q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

/* Remove underline and inherit text color for links */
a {
  text-decoration: none;
  color: inherit;
}

/* Ensure images and SVGs scale responsively */
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit font from body for form elements */
button, input, select, textarea {
  font: inherit;
}

/* Reset default button styling */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Remove spacing between table cells */
table {
  border-collapse: collapse;
  border-spacing: 0
}