Css
.items:before{
content:"★"
}
.items:nth-child(1){
font-weight: bold;
}
main > p{
background-color: red;
}
img + p{
background-color: yellow;
}
img ~ p{
background-color: green;
}
.principal p:not(#mision){
background-color: orange;
}