div p{
    color: red;
}
div > p{
    font-weight: bold;
    color: blue;
}
h2 + p{
    background-color: yellow;
}
h3 ~ p{
    outline: 2px solid green;
}
tbody tr:nth-child(even){
    background-color: rgb(174, 174, 174);
}
td:first-of-type{
    color: rgb(59, 59, 59);
    font-style: italic;
}
td:last-of-type{
    text-align: right;
}
tr:hover{
    background-color: rgb(235, 98, 235);
}
tr:active{
    color: white;
}