/* Basic modern reset */

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

img,
picture {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}