/* Reset default styles */

/* Set margin and padding to 0 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dd,
dt,
form,
fieldset,
legend,
input,
textarea,
button,
select {
  margin: 0;
  padding: 0;
}

/* Set font-size to 100% */
body,
button,
input,
select,
textarea {
  font-size: 100%;
}

/* Remove border and outline */
button,
input,
select,
textarea {
  border: none;
  outline: none;
}

/* Set line-height to 1 */
button,
input,
select,
textarea {
  line-height: 1;
}

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

/* Reset box-sizing to border-box */
* {
  box-sizing: border-box;
}