h1{

    color:green

}

h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

body {
    display: block;
    margin: 8px;
}

div span:first-child {
    color: red;
}

div span:nth-child(2) {
    background: yellow;
}

small {
    color: orange;
}

div span:last-child {
    color: green;
}

b {
    color: purple;
}

b+span {
    color: skyblue;
}

p span:nth-last-child(2) {
    color: green;
}
    p span:last-child {
        color: rgb(0, 0, 0);
    }

    body div:nth-last-child(2) {
        color: pink;
    }

    ul li:nth-child(odd) {
        color: red;
    }

    ul li:nth-child(even) {
        background: yellow;
    }

    ul li:nth-child(odd) {
        color: red;
    }

    ul li:nth-child(even) {
        background: yellow;
    }
    
    ul li:nth-child(odd) {
        color: red;
    }

    ul li:nth-child(even) {
        background: yellow;
    }

    ul li:last-child {
        color: purple;
    }

    ul {
        list-style-type: disc;
    }

    div {
    display: block;
}

a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

a[href="http://google.com"] {
    color: green;
}

a[title] {
    color: red;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

ol li:nth-child(odd) {
    color: blue;
}

ol li:nth-child(even) {
    color: green;
}

ol li:last-child {
    color: orange;
}


ol li:nth-child(4) {
    background: grey;
}



li {
    display: list-item;
    text-align: -webkit-match-parent;
}

ol {
    list-style-type: decimal;
}



ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}
