/* assets/styles/base/reset.css */

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

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

/* Base body setup */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Forms inherit typography */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

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

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

/* WebKit autofill fix */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px transparent inset;
}

