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

#idatt{
    background-color: yellow;
}
#bcolour{
    color:red;
}
.ccolour{
    color: green;
}
.secondclass{
    background-color: lightblue;
}
ul{
    list-style-type: square;
}
ol{
    list-style-type: upper-roman;
}
body{
    background-color: lightblue;
    font-family: Arial, Helvetica, sans-serif;
}
#backColour{
    background-color: tan;
}
.loremp{
    font-family: "Times New Roman",Times,serif;
}
/*h3{*/
/*    color: blue;*/
/*}*/
/*section h3{*/
/*    color: blue;*/
/*}*/
/*section>h3{*/
/*    color: blue;*/
/*}*/
h3.loremp{
    color: blue;
}
div>h3+p{
    background-color: yellow;
}
section>h3::first-letter{
    font-size: 200%;
    color: purple;
}
/*section>p:hover{*/
/*    background-color: white;*/
/*}*/
section p:hover,section p:focus{
    background-color: white;
}
/*[href]{*/
/*    background-color: lightblue;*/
/*}*/
[href="https://www.w3schools.com/"]{
    background-color: lightblue;
}
[href^=".."]{
    border: 4px solid black;
}
[href$="exercise02.html"]{
   background-color: white;
}
ol>li>ul>li:first-child{
    color: red;
}

ol>li>ul>li:last-child{
    color: green;
}
ol>li>ul>li:nth-child(2){
    color: orange;
}
ol>li>ul>li:nth-child(3){
    color: yellow;
}




