/* Reset styles */

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

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

/* Standard line height (WCAG) */
body {
    line-height: 1.5;
}

/* Remove subpixel antialiasing for MacOS browsers */
body {
    -webkit-font-smooting: antialiased;
}

/* Media default features */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* Inheritance from form controls */
input, button, textarea, select {
    font: inherit;
}

/* Word wrapping */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}