h1 {
	color: red;
}
p,li {
	color: black;
}
li {
	list-style-type: "\1D11E\20"; // Clé de sol puis espace
//list-style-type: disc;
//list-style-type: circle;
//list-style-type: square;
//list-style-type: decimal;
//list-style-type: georgian;
//list-style-type: trad-chinese-informal;
//list-style-type: kannada;
//list-style-type: "-";
}
.special {
  color: orange;
  font-weight: bold;
}
li em {
  color: black;
}
h1 + p {
	font-size: 150%;
}
p span {
	color: blue;
}
a:link {
  color: pink;
}

a:visited {
  color: green;
}
a:hover {
  text-decoration: none;
}
.box {
  margin: 30px;
  padding: 5px;
  width: 100px;
  height: 100px;
  background-color: purple;
  transform: rotate(0.125turn);
}
body {
  background-color: white;
}

@media (max-width: 30em) {
  body {
    background-color: pink;
  }
}
del{ background-color: #FF000080; }
ins{ background-color: #00FF0080; }