body {
background-color: black;
margin: 0;
color: white;
text-align: center;
font-style: italic;
}
/* on créé une balise juste pour le titre */
header {
background-color: blue;
padding: 20px;
margin: 20px;
border: 5px solid black;
}
/* pour le titre dans header
* les autres h1 ne sont pas affectés */
header h1 {
text-align: center;
background-color: greenyellow;
color: blue;
margin: 10px;
padding: 30px;
border: 5px dotted black;
}
section {
padding: 20px;
margin: 20px;
background-color: lightsteelblue;
}