/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
figure,
blockquote,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

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

/* Set default font family and size */
body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
}

/* Remove default hyperlink styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default button styles */
button,
input,
select,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background: none;
}

/* Remove border on images inside links */
img {
  border-style: none;
}
