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

/* Remove default margins */
* {
  margin: 0;
}

/* Body defaults */
html,
body {
  min-height: 100%;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Media */
img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

/* Form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* Buttons */
button {
  cursor: pointer;
  background: none;
  border: none;
}

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

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