/*selector tag*/
h1 {
    text-shadow: 3xp 5xp 3xp;
}
h1 {
    text-shadow: 3xp 6xp 2px;
    color: rgb(255, 0, 213);
}
/*selector class*/
.item {
    background-color: rgb(0, 213, 255);
}
/* selector id*/
#tel {
    box-shadow: 3xp 6xp 3px;
}
/* selector attribute*/
[type="checkbox"] {  
    box-shadow: 3xp 4xp 1px 1xp;
}
/* selector kind*/
article > p {
    color : rgb(6, 255, 122);
}
/* selector сусіда*/
article + p {
    color : rgb(255, 213, 0);
}