Quelques changements modernes à customiser selon vos projets.
*,
*::before,
*::after {
box-sizing: border-box;
min-width:0;
}
html {
scroll-behavior: smooth;
}
/* Rendre les images responsive */
img,
picture {
max-width: 100%;
display: block;
}
/* Rendre le texte plus lisible */
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
min-height:100dvh;
}
h1,h2,h3,h4{
text-wrap: balance; // ton titre
}
p{
text-wrap: pretty;
}