*{
    /*margin: 0;*/
    /*margin: 1.5rem;!*relative value based on default font size of the html*!*/
    /*margin: 1.5em;!*relative value based on default parent font size*!*/

    /*margin: 10px;*/

}
body{
    background-color: lightpink;
    font-family: Arial, Helvetica, sans-serif;
}
#backColour{
    background-color: tan;
}
#bcolour{
    background-color: yellow;
}
#idatt{
    background-color: lightblue;
}
.ccolour{
    color: blue;
}
ol{
    list-style-type: decimal-leading-zero;
}
ul{
    list-style-type: square;
}
.loremp{
    font-family: "Times New Roman", Times, serif;
}
/*h3{*/
/*    font-size: 150%;*/
/*    color: red;*/
/*}*/
/*#lorem*/
/*{*/
/*    font-size: 150%;*/
/*    color: red;*/
/*}*/
section h3{
    font-size: 150%;
    color: red;
}
[href="https://www.w3schools.com"]{
    background-color: lightblue;
}
/*[href]{*/
/*    background-color: lightblue;*/
/*}*/
[href^=".."]{
    border: dotted red 4px;
}
[href$="wk02.html"]{
    background-color: white;
}
#lorem:first-letter{
    font-size: 200%;
    color: darkorchid;
}
a:hover{
    background-color: yellow;
}
section>p:hover{
    background-color: yellow;
}
/*section>p{*/
/*    background-color: pink;*/
/*}*/
/*section p{*/
/*    background-color: pink;*/
/*}*/
section>h3+p{
    background-color: pink;
}
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;
}