/* Reset margins, paddings, box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Remove link underlines and default color */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset images */
img {
  max-width: 100%;
  height: auto;
}

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