*{
    /*margin: 0;*/
    /*margin: 10px;*/
    /*margin: 1.5em;*/
    /*margin: 1.5rem;*/

}

#idatt{
    background-color: yellow;
}
#bcolour{
    background-color: lightblue;
}
.ccolour{
    background-color: lightgreen;
}
.secondclass{
    color: blue;
}
ul{
    list-style-type: square;
}
ol{
    list-style-type: upper-roman;
}
/*#backColour{*/
/*    background-color: tan;*/
/*}*/
body{
    background-color: tan;
    font-family: Arial, Helvetica, sans-serif;
}
.loremp{
    font-family: "Times New Roman", Times, serif;
}
/*#lorem{*/
/*    color: red;*/
/*}*/

/*h3{*/
/*    color: blue;*/
/*}*/
/*section h3{*/
/*    color: red;*/
/*}*/
/*section>h3{*/
/*    color: red;*/
/*}*/
h3.loremp{
    color: red;
}

section>h3+p+p, section>h3+p{
    background-color: yellow;
}
section>h3::first-letter{
    font-size: 200%;
    color: purple;
}
section p:hover{
    background-color: white;
}
/*[href]{*/
/*    background-color: lightblue;*/
/*}*/
[href="https://www.w3schools.com/"]{
    background-color: lightblue;
}
[href^=".."]{
    border: 4px dotted red;
}
[href$="practicewk02.html"]{
    background-color: white;
}
li>ul>li:first-child{
    color: red;
}
li>ul>li:last-child{
    color: green;
}
li>ul>li:nth-child(2){
    color: orange;
}
li>ul>li:nth-child(3){
    color: yellow;
}
