/* Reseta margens, preenchimentos e bordas em todos os elementos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
}

/* Define as dimensões padrão para os elementos HTML5 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Faz os elementos HTML5 exibirem em bloco por padrão */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Define a linha base para documentos */
body {
    line-height: 1;
}

/* Remove os estilos padrão de listas */
ol, ul {
    list-style: none;
}

/* Remove os estilos de citação */
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Define as tabelas para que tenham bordas separadas e espaçamento zero */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reseta botões e campos de formulário */
button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Remove sublinhados dos links por padrão */
a {
    text-decoration: none;
    color: inherit;
}

/* Define altura mínima para links de botões */
button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

/* Remoção de estilo para cabeçalhos e subtítulos */
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}