/* Minimal CSS Reset */

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

/* Set consistent font rendering */
html {
  font-size: 62.5%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
}

/* Remove default styling from common elements */
ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}

/* Make images responsive by default */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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