/*propriété CSS sur le body*/

body{
    background-color:transparent;
}
span{
    color:grey;
}

/*couleur de texte*/

#color .red {
    color: red;
}

#color .blue {
    color: blue;
}

#color .green {
    color: green;
}

/*couleur de fonc de texte*/

#background p {
    font-family: monospace;
}

#background .red {
    background-color: red;
}

#background .blue {
    background-color: blue;
}

#background .green {
    background-color: green;
}