/**{
    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;
}
body{
    font-family: Arial, Helvetica, sans-serif;
}
.loremp{
    font-family: "Times New Roman",times, serif;
}
/*h3{
    color: rgb(0,0,255);
}*/
/*
#lorem{
    color: blue;
}*/
/*
.loremp{
    color: blue;
}*/
/*
h3.loremp{
    color: blue;
}*/
/*
section>h3{
    color: #0000FF;
}*/
/*
section h3{
    color: #0000FF;
}*/
/*section>h3:first-child{
    color: #0000FF;
}*/
section>h3:first-letter{
    color: #FF0000;
    font-size: 200%;
}
section p:hover, section p:focus{
    background-color: white;
}
/*[href]{
    background-color: gray;
}*/
[href="https://www.w3schools.com/" ]{
    background-color: gray;
}
[href^=".."]{
    border: purple solid 4px;
}
[href$="exercise02.html"]{
    background-color: lightgreen;
}
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;
}