/* Normalização básica para estilos úteis */
html {
    font-weight: normal;
}

/* Redefinição de margens e padding */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6{
    margin-top: 10px;
    margin-bottom: 10px;
}
/* Box-sizing */
* {
    box-sizing: border-box;
}

/* Tamanhos de fonte para títulos (com correção do 'rem') */
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.2rem; }

/* Parágrafos e listas */
p { text-indent: 25px; }
ul, ol { list-style: none; }

/* Citações */
blockquote, q { font-style: italic; }
blockquote { padding-inline-start: 25px; }

/* Imagens responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}


