/*
 * File: reset.css
 * Responsibility: Minimal browser style normalization.
 */

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

html,
body {
  min-height: 100%;
}

body,
h1,
h2,
p,
figure,
address {
  margin: 0;
}

body {
  min-height: 100vh;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}
