*{
    margin: 1.5em; /* default parent font size
                    16px root font size */
    margin: 1.5rem; /* use the default root document font size */

    margin: 10px;
}
body{
    background-color: lightgreen;
}
body{
    background-color: tan;
    font-family: Arial, Helvetica, sans-serif;
}
.loremp{
    font-family: "Times New Roman", Times, serif;
}
#lorem{
    font-size: 150%;
    color: rgb(0,0,255);
}
/*[href]{*/
/*    border: dotted red 2px;*/
/*}*/
[href="https://www.w3schools.com/"]{
    border: dotted red 2px;
}
[href^=".."]{
    border: dotted red 2px;
}
[href$="template.html"]:hover{
    background-color: yellow;
}
#lorem::first-letter{
    font-size: 200%;
    color: green;
}
#secBot{
    background-color: yellow;
}
section>h3+p{
    background-color: lightblue;
}
ul>li:first-child{
    color: red;
}
ul>li:last-child{
    color: blue;
}
ul>li:nth-child(3){
    color: yellow;
}
ul>li:nth-child(2){
    color: orange;
}