/* Normalising stylesheet to ensure browsers behave the same etc */

html * {
  box-sizing: border-box;
  color: inherit;
  /* outline: none; */
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

a {
  cursor: pointer;
}

p {
  margin: 0;
}

button {
  background-color: transparent;
  border-width: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}
