html {
    font-size: 87.5%; /* équivalent ~14px au lieu de 16px => réduit tout */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Libre Franklin', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Empêche les “effets zoomés” visuels */
img {
    max-width: 100%;
    height: auto;
}

/* Corrige les gros espacements excessifs */
section {
    box-sizing: border-box;
}

/* Améliore la lisibilité globale */
p {
    line-height: 1.6;
}

/* Évite les débordements horizontaux */
html, body {
    overflow-x: hidden;
}

/* Réduit légèrement les tailles Material Symbols (souvent trop grosses) */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* OPTION : rend le design un peu moins “énorme” globalement */
h1, h2, h3 {
    line-height: 1.2;
}