/* Minimal CSS Reset */
/* Box sizing rules */
*, *::before, *::after { box-sizing: border-box; }

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

/* Remove default list styles */
ul[role='list'], ol[role='list'] { list-style: none; }

/* Set core body defaults */
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; }

/* Improve text rendering */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Remove default link styles (color handled in main.css) */
a { text-decoration: none; color: inherit; }

/* Images easier to work with */
img, picture, svg, video, canvas { display: block; max-width: 100%; }

/* Inherit fonts for inputs and buttons */
input, button, textarea, select { font: inherit; }
