html {
  scroll-behavior: smooth;
}
/* Sélecteur universel */
/* * {
  color:red;
} */

/* Sélecteur de type/balise */
/* h1 {
  letter-spacing: 10px;
}
div {
  text-align: center;
} */
/* Sélecteur descendant */
/* div p {
  color:cadetblue;
} */
/* Sélecteur d'enfant direct */
/* section > * {
  color:red;
} */
 /* Sélecteur de classe et d'id */
/* .majuscule {
  text-transform: uppercase;
}
.gras {
  font-weight: bold;
}
#colored {
  color:red;
} */
/* Le survol */
a {
  transition:.3s all ease-in-out;
  color:salmon;
}
a:hover {
  color:skyblue;
}
h1 {
  transition:1s all cubic-bezier(0.67,-0.35, 0, 1.4);
}

h1:hover {
  background-color:brown;
  color:#fff;
}




h1 span {}
div * {}
div > * {}
div, strong, h1, html, body, ul {}
.coucou {}
#form {}
div.coucou > a {}
nav:hover {}

li+li+li+li {
}

/* li:first-child {
  color:red;
}
li:last-child {
  color:magenta;
} */

/* li:nth-of-type(3n) {
  color:red;
} */

[type="text"] {
  background:pink;
}