/* Reset the box model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Remove default styles from elements */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Remove text decoration from links */
a {
  text-decoration: none;
  color: inherit;
}

/* Set up base styles */
html,
body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
}

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

/* Remove button default styles */
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}