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


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

section>h3{
    color: blue;
}
section>div>h3+p+p{
    background-color: yellow;
}
section>h3:first-letter{
    font-size: 250%;
    color: purple;
}
section p:hover{
    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;
}

/*h3+div{
    background-color: green;
}*/

p+div{
    background-color: green;
}
/*ul>li{
    color: red;
}*/

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;
}
