/* Box sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

/* Forms */
input,
textarea,
button {
  font-size: inherit;
  font-family: inherit;
}

button {
  cursor: pointer;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}