/* reset.css — Minimal CSS reset */

/* Box sizing: make layout calculations easier */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default margins on common elements */
html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}

/* Reset lists */
ul, ol, menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Make media elements responsive */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Form elements inherit font styles */
input, button, textarea, select {
    font: inherit;
}

/* Links inherit color by default */
a {
    color: inherit;
    text-decoration: none;
}

/* Minimal button reset */
button {
    background: none;
    border: none;
    padding: 0;
}
