/* reset.css — minimal modern reset */

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

html,
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

nav ul,
nav ol {
  list-style: none;
}

button {
  cursor: pointer;
  font: inherit;
}

a {
  color: inherit;
}
