/* === Reset CSS === */

/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Reset margins */
body, h1, h2, h3, h4, h5, h6,
p, ul, ol, li, figure, figcaption,
blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* Remove bullet and numbers */
ul, ol {
  list-style: none;
}

/* Default body */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Images */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Inputs */
input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Buttons */
button {
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
