/* Reset CSS */

/* Box sizing */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* Reset margins and paddings */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
pre,
form,
fieldset,
input,
ol,
ul,
th,
td,
legend {
  margin: 0;
  padding: 0;
}

/* Typography */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

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

/* Links */
a {
  text-decoration: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Buttons */
button {
  background-color: transparent;
  border: none;
}
