*{
/*    margin: 0;
    margin: 10px;
    margin: 1.5em;
    margin: 1.5rem;
    font-size: 10px;*/
}
p{
    color: red;
    /*background-color: yellow;*/
}
#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-roman;
}
#backColour{
    background-color: lightgoldenrodyellow;
}
body{
    background-color: lightpink;
    font-family: Arial, Helvetica, sans-serif;
    /*font-size: 10px;*/
}
.loremp{
    font-family: "Times New Roman",times, serif;
}
/*
h3{
    color: blue;
}*/
/*h3#lorem{*/
/*    color: blue;*/
/*}*/
/*section>h3{
    color: blueviolet;
}*/
/*section h3{
    color: blueviolet;
}*/
/*h3.loremp{
    color: blueviolet;
}*/
/*section>h3:first-child{
    color: blueviolet;
}*/
/*section h3:first-child{
    color: blueviolet;
}*/
section>h3+h3{
    color: blueviolet;
}
/*section>p:hover{
    background-color: lightblue;
}*/
section p:hover{
    background-color: lightblue;
}
/*[href]{
    background-color: lightblue;
}*/
[href="https://www.w3schools.com/"]{
    background-color: lightblue;
}
[href^=".."]{
    border: green solid 4px;
}
[href$="exercise02.html"]{
    background-color: lightgray;
}
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;
}
h4+ul>li:not(.noColour){
    color: red;
}
