/**
 * Minimal CSS Reset
 * Browser normalization without opinionated defaults
 */

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

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

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

/* Make images responsive by default */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* Remove built-in form typography styles */
input, button, textarea, select {
    font: inherit;
}

/* Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* Improve line heights */
body {
    line-height: 1.5;
}

/* Remove button borders and backgrounds */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Remove link underlines by default */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove list bullets by default */
ul, ol {
    list-style: none;
}